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

Method signatures

bolt/expression/tests/ExprTest.cpp:1484–1492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1482 }
1483
1484 static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() {
1485 // T... -> integer
1486 return {exec::FunctionSignatureBuilder()
1487 .typeVariable("T")
1488 .returnType("integer")
1489 .argumentType("T")
1490 .variableArity()
1491 .build()};
1492 }
1493
1494 private:
1495 const int32_t numInputs_;

Callers

nothing calls this directly

Calls 3

variableArityMethod · 0.80
buildMethod · 0.45

Tested by

no test coverage detected