(&self)
| 340 | } |
| 341 | |
| 342 | pub fn isdigit(&self) -> bool { |
| 343 | !self.elements.is_empty() |
| 344 | && self |
| 345 | .elements |
| 346 | .iter() |
| 347 | .all(|x| char::from(*x).is_ascii_digit()) |
| 348 | } |
| 349 | |
| 350 | pub fn islower(&self) -> bool { |
| 351 | self.elements.py_islower() |
no test coverage detected