(self)
| 660 | } |
| 661 | |
| 662 | fn abs(self) -> ValueResult<Self> { |
| 663 | unary_match!(abs(&self); [F32, F64]) |
| 664 | } |
| 665 | |
| 666 | fn sadd_checked(self, other: Self) -> ValueResult<Option<Self>> { |
| 667 | binary_match!(option checked_add(&self, &other); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]) |
no outgoing calls
no test coverage detected