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

Function VarArgs

cpp/src/arrow/compute/function.h:62–62  ·  view source on GitHub ↗

\brief A function taking a variable number of arguments \param[in] min_args the minimum number of arguments required when invoking the function

Source from the content-addressed store, hash-verified

60 /// \param[in] min_args the minimum number of arguments required when
61 /// invoking the function
62 static Arity VarArgs(int min_args = 0) { return Arity(min_args, true); }
63
64 // NOTE: the 0-argument form (default constructor) is required for Cython
65 explicit Arity(int num_args = 0, bool is_varargs = false)

Callers 5

TESTFunction · 0.85
RegisterScalarNestedFunction · 0.85
RegisterScalarIfElseFunction · 0.85
MakeScalarMinMaxFunction · 0.85
AddAsciiStringJoinFunction · 0.85

Calls 1

ArityFunction · 0.85

Tested by 1

TESTFunction · 0.68