Function eql [src]

Returns true if a == b.

Prototype

pub fn eql(a: Const, b: Const) bool

Parameters

a: Constb: Const

Source

pub fn eql(a: Const, b: Const) bool { return order(a, b) == .eq; }