Function isBytes [src]
Prototype
pub inline fn isBytes(self: Self, slice: []const u8) NoEofError!bool
Parameters
self: Self
slice: []const u8
Possible Errors
Source
pub inline fn isBytes(self: Self, slice: []const u8) NoEofError!bool {
return @errorCast(self.any().isBytes(slice));
}