MCPcopy Create free account
hub / github.com/apache/arrow / garrow_array_builder_append_value

Function garrow_array_builder_append_value

c_glib/arrow-glib/array-builder.cpp:28–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27template <typename BUILDER, typename VALUE>
28gboolean
29garrow_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
40template <typename VALUE, typename APPEND_FUNCTION>
41gboolean

Callers

nothing calls this directly

Calls 3

garrow_error_checkFunction · 0.85
AppendMethod · 0.45

Tested by

no test coverage detected