| 43 | } |
| 44 | |
| 45 | pub trait StringOps<T> { |
| 46 | fn split(&self, target: u8) -> Vector<Str>; |
| 47 | fn index_of(&self, target: &T) -> Option<usize>; |
| 48 | fn contains(&self, target: &T) -> bool; |
| 49 | fn reverse(&mut self) -> &mut Self; |
| 50 | } |
| 51 | |
| 52 | /// A CharBlockNode is a block of characters allocated |
| 53 | /// at one time. This allows us to be a bit more |
nothing calls this directly
no outgoing calls
no test coverage detected