| 4 | pub type String = Vector::<u8>; |
| 5 | |
| 6 | pub trait StringBuffer { |
| 7 | fn index_of(&self, target: String) -> Option<usize>; |
| 8 | fn contains(&self, target: String) -> bool; |
| 9 | fn split(&mut self, separator: u8) -> Vector::<String>; |
| 10 | } |
| 11 | |
| 12 | impl String { |
| 13 | pub fn push_node(&mut self, node: *mut Node<u8>) { |
nothing calls this directly
no outgoing calls
no test coverage detected