| 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 |
nothing calls this directly
no test coverage detected