line: usize
column: usize
source_line: []const u8
Does not include the trailing newline.
pub fn eql(a: Loc, b: Loc) bool
a: Loc
b: Loc
pub fn eql(a: Loc, b: Loc) bool { return a.line == b.line and a.column == b.column and std.mem.eql(u8, a.source_line, b.source_line); }
pub const Loc = struct { line: usize, column: usize, /// Does not include the trailing newline. source_line: []const u8, pub fn eql(a: Loc, b: Loc) bool { return a.line == b.line and a.column == b.column and std.mem.eql(u8, a.source_line, b.source_line); } }
Press escape to exit search and then '?' to see more options.