| 776 | SCALAR_EAGER_UNARY(Tanh, "tanh") |
| 777 | |
| 778 | Result<Datum> Round(const Datum& arg, RoundOptions options, ExecContext* ctx) { |
| 779 | return CallFunction("round", {arg}, &options, ctx); |
| 780 | } |
| 781 | |
| 782 | Result<Datum> RoundBinary(const Datum& arg1, const Datum& arg2, |
| 783 | RoundBinaryOptions options, ExecContext* ctx) { |
no test coverage detected