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

Function garrow_codec_get_name

c_glib/arrow-glib/codec.cpp:149–157  ·  view source on GitHub ↗

* garrow_codec_get_name: * @codec: A #GArrowCodec. * * Returns: The name of the codec. * * Since: 0.12.0 */

Source from the content-addressed store, hash-verified

147 * Since: 0.12.0
148 */
149const gchar *
150garrow_codec_get_name(GArrowCodec *codec)
151{
152 auto arrow_codec = garrow_codec_get_raw(codec);
153 if (!arrow_codec) {
154 return NULL;
155 }
156 return arrow_codec->name().c_str();
157}
158
159/**
160 * garrow_codec_get_compression_type:

Callers

nothing calls this directly

Calls 2

garrow_codec_get_rawFunction · 0.85
nameMethod · 0.45

Tested by

no test coverage detected