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