Function eql [src]
Prototype
pub fn eql(self: Context, a: Match, b: Match, b_index: usize) bool
Parameters
self: Context
a: Match
b: Match
b_index: usize
Source
pub fn eql(self: Context, a: Match, b: Match, b_index: usize) bool {
_ = self;
_ = b_index;
return a.step == b.step and std.mem.eql(u8, a.basename, b.basename);
}