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

Function Nullary

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

\brief A function taking no arguments

Source from the content-addressed store, hash-verified

45struct ARROW_EXPORT Arity {
46 /// \brief A function taking no arguments
47 static Arity Nullary() { return Arity(0, false); }
48
49 /// \brief A function taking 1 argument
50 static Arity Unary() { return Arity(1, false); }

Callers 3

TESTFunction · 0.85
RegisterScalarRandomFunction · 0.85

Calls 1

ArityFunction · 0.85

Tested by 1

TESTFunction · 0.68