Function eql [src]

Returns true iff every corresponding bit in both bit sets are the same.

Prototype

pub fn eql(self: Self, other: Self) bool

Parameters

self: Selfother: Self

Source

pub fn eql(self: Self, other: Self) bool { return self.unmanaged.eql(other.unmanaged); }