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