Enum boa::value::AbstractRelation [−][src]
pub enum AbstractRelation {
True,
False,
Undefined,
}
Expand description
The result of the Abstract Relational Comparison.
Comparison x < y
, where x
and y
are values.
It produces true
, false
, or undefined
(which indicates that at least one operand is NaN
).
Variants
x
is less than y
x
is not less than y
Indicates that at least one operand is NaN
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for AbstractRelation
impl Send for AbstractRelation
impl Sync for AbstractRelation
impl Unpin for AbstractRelation
impl UnwindSafe for AbstractRelation
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.