| 874 | } |
| 875 | |
| 876 | Value expr_plus(const std::vector<Value> &args) { |
| 877 | return expr_binary_op(args, [](long double a, long double b) {return a + b;}, [](int64_t a, int64_t b) {return a + b;}); |
| 878 | } |
| 879 | |
| 880 | Value expr_minus(const std::vector<Value> &args) { |
| 881 | return expr_binary_op(args, [](long double a, long double b) {return a - b;}, [](int64_t a, int64_t b) {return a - b;}); |
nothing calls this directly
no test coverage detected