| 1921 | } |
| 1922 | |
| 1923 | static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() { |
| 1924 | // T -> T |
| 1925 | return {exec::FunctionSignatureBuilder() |
| 1926 | .typeVariable("T") |
| 1927 | .returnType("T") |
| 1928 | .argumentType("T") |
| 1929 | .build()}; |
| 1930 | } |
| 1931 | }; |
| 1932 | |
| 1933 | // Returns a dictionary vector with values from the first argument |
nothing calls this directly
no test coverage detected