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