Function peekDelimiterExclusive [src]

Returns a slice of the next bytes of buffered data from the stream until delimiter is found, without advancing the seek position. Returned slice excludes the delimiter. End-of-stream is treated equivalent to a delimiter, unless it would result in a length 0 return value, in which case error.EndOfStream is returned instead. If the delimiter is not found within a number of bytes matching the capacity of this Reader, error.StreamTooLong is returned. In such case, the stream state is unmodified as if this function was never called. Invalidates previously returned values from peek. See also: peekDelimiterInclusive takeDelimiterExclusive

Prototype

pub fn peekDelimiterExclusive(r: *Reader, delimiter: u8) DelimiterError![]u8

Parameters

r: *Readerdelimiter: u8

Possible Errors

EndOfStream

For "inclusive" functions, stream ended before the delimiter was found. For "exclusive" functions, stream ended and there are no more bytes to return.

ReadFailed

See the Reader implementation for detailed diagnostics.

StreamTooLong

The delimiter was not found within a number of bytes matching the capacity of the Reader.

Example

test peekDelimiterExclusive { var r: Reader = .fixed("ab\nc"); try testing.expectEqualStrings("ab", try r.peekDelimiterExclusive('\n')); try testing.expectEqualStrings("ab", try r.peekDelimiterExclusive('\n')); r.toss(3); try testing.expectEqualStrings("c", try r.peekDelimiterExclusive('\n')); try testing.expectEqualStrings("c", try r.peekDelimiterExclusive('\n')); }

Source

pub fn peekDelimiterExclusive(r: *Reader, delimiter: u8) DelimiterError![]u8 { const result = r.peekDelimiterInclusive(delimiter) catch |err| switch (err) { error.EndOfStream => { const remaining = r.buffer[r.seek..r.end]; if (remaining.len == 0) return error.EndOfStream; return remaining; }, else => |e| return e, }; return result[0 .. result.len - 1]; }