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

Function garrow_datum_is_array

c_glib/arrow-glib/datum.cpp:123–128  ·  view source on GitHub ↗

* garrow_datum_is_array: * @datum: A #GArrowDatum. * * Returns: %TRUE if the datum holds a #GArrowArray, %FALSE * otherwise. * * Since: 1.0.0 */

Source from the content-addressed store, hash-verified

121 * Since: 1.0.0
122 */
123gboolean
124garrow_datum_is_array(GArrowDatum *datum)
125{
126 const auto &arrow_datum = garrow_datum_get_raw(datum);
127 return arrow_datum.is_array();
128}
129
130/**
131 * garrow_datum_is_array_like:

Callers

nothing calls this directly

Calls 1

is_arrayMethod · 0.80

Tested by

no test coverage detected