NextSplitPoint() determines the location of the next split point in the given slice of bytes. It returns value `n` between 1..len(b) if a split point happens AFTER byte n and the splitter has consumed `n` bytes. If there is no split point, the splitter returns -1 and consumes all bytes from the slic
(b []byte)
| 23 | // has consumed `n` bytes. |
| 24 | // If there is no split point, the splitter returns -1 and consumes all bytes from the slice. |
| 25 | NextSplitPoint(b []byte) int |
| 26 | MaxSegmentSize() int |
| 27 | Reset() |
| 28 | Close() |
no outgoing calls