Function eqlAbs [src]
Returns true if |a| == |b|.
Prototype
pub fn eqlAbs(a: Const, b: Const) bool
Parameters
a: Const
b: Const
Source
pub fn eqlAbs(a: Const, b: Const) bool {
return orderAbs(a, b) == .eq;
}
pub fn eqlAbs(a: Const, b: Const) bool
a: Const
b: Const
pub fn eqlAbs(a: Const, b: Const) bool {
return orderAbs(a, b) == .eq;
}