std.json.Number
class pub enum Number
A numeric value that's either an Int
or a Float
.
Constructors
Int
Int(Int)
Float
Float(Float)
Instance methods
!=
Show source codeHide source code
fn pub !=(other: T) -> Bool {
(self == other).false?
}
fn pub !=(other: T) -> Bool
Returns true
if self
and the given object are not equal to each other.
==
Show source codeHide source code
fn pub ==(other: ref Number) -> Bool {
match (self, other) {
case (Int(a), Int(b)) -> a == b
case (Float(a), Float(b)) -> a == b
case _ -> false
}
}
fn pub ==(other: ref Number) -> Bool
Returns true
if self
and the given object are equal to each other.
This operator is used to perform structural equality. This means two objects residing in different memory locations may be considered equal, provided their structure is equal. For example, two different arrays may be considered to have structural equality if they contain the exact same values.
fmt
Show source codeHide source code
fn pub fmt(formatter: mut Formatter) {
match self {
case Int(v) -> formatter.tuple('Int').field(v).finish
case Float(v) -> formatter.tuple('Float').field(v).finish
}
}
fn pub fmt(formatter: mut Formatter)
Formats self
in a human-readable format for debugging purposes.
Implemented traits
Equal
impl Equal[ref Number] for Number
Format
impl Format for Number