ReadToSeparator(ReadOnlySpanChar, Char) | Advances the specified rest parameter after the next separator character and returns the consumed part without the separator. If the first character of rest was a separator before the call, then an empty span is returned. If the whole ReadOnlySpan<char> has been processed, then rest will be ReadOnlySpan<char>.Empty after returning. |
ReadToSeparator(ReadOnlySpanChar, Char) | Advances the specified rest parameter after the next separator and returns the consumed part without the separator. If rest started with one of the separators before the call, then an empty span is returned. If the whole ReadOnlySpan<char> has been processed, then rest will be ReadOnlySpan<char>.Empty after returning. |
ReadToSeparator(ReadOnlySpanChar, ReadOnlySpanChar) | Advances the specified rest parameter after the next separator and returns the consumed part without the separator. If rest started with separator before the call, then an empty span is returned. If the whole ReadOnlySpan<char> has been processed, then rest will be ReadOnlySpan<char>.Empty after returning. |