First half of the split.
(&mut self)
| 403 | impl<'a> SplitResult<'a> { |
| 404 | /// First half of the split. |
| 405 | pub fn first_half(&mut self) -> &mut [ValueSegment] { |
| 406 | &mut self.segments[..self.first_half_end] |
| 407 | } |
| 408 | |
| 409 | /// Second half of the split. |
| 410 | pub fn into_second_half(self) -> &'a mut [ValueSegment] { |
no outgoing calls
no test coverage detected