MCPcopy Create free account
hub / github.com/bytedance/bolt / signatures

Method signatures

bolt/expression/tests/ExprTest.cpp:2073–2081  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2071 }
2072
2073 static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() {
2074 // T... -> array(varchar)
2075 return {exec::FunctionSignatureBuilder()
2076 .typeVariable("T")
2077 .returnType("array(varchar)")
2078 .argumentType("T")
2079 .variableArity()
2080 .build()};
2081 }
2082};
2083
2084BOLT_DECLARE_VECTOR_FUNCTION(

Callers

nothing calls this directly

Calls 3

variableArityMethod · 0.80
buildMethod · 0.45

Tested by

no test coverage detected