Function eql [src]

Prototype

pub fn eql(set: Set, other_set: Set) bool

Parameters

set: Setother_set: Set

Source

pub fn eql(set: Set, other_set: Set) bool { return std.mem.eql(usize, &set.ints, &other_set.ints); }