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

Method signatures

bolt/expression/tests/ExprTest.cpp:1953–1961  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1951 }
1952
1953 static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() {
1954 // T, integer -> T
1955 return {exec::FunctionSignatureBuilder()
1956 .typeVariable("T")
1957 .returnType("T")
1958 .argumentType("T")
1959 .argumentType("integer")
1960 .build()};
1961 }
1962};
1963
1964// Single-argument deterministic functions always receive their argument

Callers

nothing calls this directly

Calls 2

buildMethod · 0.45

Tested by

no test coverage detected