Function eql [src]
Prototype
pub fn eql(self: TableAdapter, a: Cache.Path, b: Cache.Path, b_index: usize) bool Parameters
self: TableAdaptera: Cache.Pathb: Cache.Pathb_index: usize Source
pub fn eql(self: TableAdapter, a: Cache.Path, b: Cache.Path, b_index: usize) bool {
_ = self;
_ = b_index;
return a.eql(b);
}