Returns true if this program uses Byte instructions instead of Char/Range instructions.
(&self)
| 132 | /// Returns true if this program uses Byte instructions instead of |
| 133 | /// Char/Range instructions. |
| 134 | pub fn uses_bytes(&self) -> bool { |
| 135 | self.is_bytes || self.is_dfa |
| 136 | } |
| 137 | |
| 138 | /// Returns true if this program exclusively matches valid UTF-8 bytes. |
| 139 | /// |
no outgoing calls
no test coverage detected