(self)
| 798 | } |
| 799 | |
| 800 | fn count_ones(self) -> ValueResult<Self> { |
| 801 | unary_match!(count_ones(&self); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]) |
| 802 | } |
| 803 | |
| 804 | fn leading_ones(self) -> ValueResult<Self> { |
| 805 | unary_match!(leading_ones(&self); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]) |
no outgoing calls