(self)
| 806 | } |
| 807 | |
| 808 | fn leading_zeros(self) -> ValueResult<Self> { |
| 809 | unary_match!(leading_zeros(&self); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]) |
| 810 | } |
| 811 | |
| 812 | fn trailing_zeros(self) -> ValueResult<Self> { |
| 813 | unary_match!(trailing_zeros(&self); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]) |
no outgoing calls
no test coverage detected