| 890 | } |
| 891 | |
| 892 | Value expr_mod(const std::vector<Value> &args) { |
| 893 | return expr_binary_op(args, [](long double a, long double b) {return std::fmod(a, b);}, [](int64_t a, int64_t b) {return a % b;}); |
| 894 | } |
| 895 | |
| 896 | Value expr_toRadix(const std::vector<Value> &args) { |
| 897 | int64_t radix = args[1].asSignedLong(); |
nothing calls this directly
no test coverage detected