|
32 | 32 | operator.sub: numeric_ops.sub_op, |
33 | 33 | operator.mul: numeric_ops.mul_op, |
34 | 34 | operator.truediv: numeric_ops.div_op, |
| 35 | + operator.floordiv: numeric_ops.floordiv_op, |
35 | 36 | operator.mod: numeric_ops.mod_op, |
36 | 37 | operator.pow: numeric_ops.pow_op, |
37 | 38 | operator.pos: numeric_ops.pos_op, |
38 | 39 | operator.neg: numeric_ops.neg_op, |
39 | 40 | operator.abs: numeric_ops.abs_op, |
40 | | - operator.eq: comparison_ops.eq_null_match_op, |
| 41 | + operator.eq: comparison_ops.eq_op, |
41 | 42 | operator.ne: comparison_ops.ne_op, |
42 | 43 | operator.gt: comparison_ops.gt_op, |
43 | 44 | operator.lt: comparison_ops.lt_op, |
|
49 | 50 | ## math |
50 | 51 | math.log: numeric_ops.ln_op, |
51 | 52 | math.log10: numeric_ops.log10_op, |
| 53 | + math.log1p: numeric_ops.log1p_op, |
| 54 | + math.expm1: numeric_ops.expm1_op, |
52 | 55 | math.sin: numeric_ops.sin_op, |
53 | 56 | math.cos: numeric_ops.cos_op, |
54 | 57 | math.tan: numeric_ops.tan_op, |
|
58 | 61 | math.asin: numeric_ops.arcsin_op, |
59 | 62 | math.acos: numeric_ops.arccos_op, |
60 | 63 | math.atan: numeric_ops.arctan_op, |
| 64 | + math.floor: numeric_ops.floor_op, |
| 65 | + math.ceil: numeric_ops.ceil_op, |
61 | 66 | ## str |
62 | 67 | str.upper: string_ops.upper_op, |
63 | 68 | str.lower: string_ops.lower_op, |
|
0 commit comments