Function eql [src]
Prototype
pub fn eql(set: Set, other_set: Set) bool
Parameters
set: Set
other_set: Set
Source
pub fn eql(set: Set, other_set: Set) bool {
return std.mem.eql(usize, &set.ints, &other_set.ints);
}
pub fn eql(set: Set, other_set: Set) bool
set: Set
other_set: Set
pub fn eql(set: Set, other_set: Set) bool {
return std.mem.eql(usize, &set.ints, &other_set.ints);
}