| 26 | |
| 27 | template <typename BUILDER, typename VALUE> |
| 28 | gboolean |
| 29 | garrow_array_builder_append_value(GArrowArrayBuilder *builder, |
| 30 | VALUE value, |
| 31 | GError **error, |
| 32 | const gchar *context) |
| 33 | { |
| 34 | auto arrow_builder = |
| 35 | std::static_pointer_cast<BUILDER>(garrow_array_builder_get_raw(builder)); |
| 36 | auto status = arrow_builder->Append(value); |
| 37 | return garrow_error_check(error, status, context); |
| 38 | } |
| 39 | |
| 40 | template <typename VALUE, typename APPEND_FUNCTION> |
| 41 | gboolean |
nothing calls this directly
no test coverage detected