Returns underlying right elements.
(self)
| 89 | |
| 90 | /// Returns underlying right elements. |
| 91 | pub fn right(self) -> &'right [Right] { |
| 92 | self.right |
| 93 | } |
| 94 | |
| 95 | /// Splits into two slices with equal length. |
| 96 | pub fn split(self) -> (&'left [Left], &'right [Right]) { |