* garrow_equal_options_is_approx: * @options: A #GArrowEqualOptions. * * Returns: %TRUE if approximate comparison is used, %FALSE otherwise. * * Since: 5.0.0 */
| 376 | * Since: 5.0.0 |
| 377 | */ |
| 378 | gboolean |
| 379 | garrow_equal_options_is_approx(GArrowEqualOptions *options) |
| 380 | { |
| 381 | auto priv = GARROW_EQUAL_OPTIONS_GET_PRIVATE(options); |
| 382 | return priv->approx; |
| 383 | } |
| 384 | |
| 385 | struct GArrowArrayStatisticsPrivate |
| 386 | { |
no outgoing calls
no test coverage detected