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

Function garrow_expression_new_raw

c_glib/arrow-glib/expression.cpp:396–407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

394}
395
396GArrowExpression *
397garrow_expression_new_raw(const arrow::compute::Expression &arrow_expression,
398 const gchar *first_property_name,
399 ...)
400{
401 va_list args;
402 va_start(args, first_property_name);
403 auto array =
404 garrow_expression_new_raw_valist(arrow_expression, first_property_name, args);
405 va_end(args);
406 return array;
407}
408
409GArrowExpression *
410garrow_expression_new_raw_valist(const arrow::compute::Expression &arrow_expression,

Callers 4

expression.cppFile · 0.85

Calls 1

Tested by

no test coverage detected