Overview
The `Inequality` primitive wrapper object
Inequality {}
Inequality {}The Inequality abstract primitive wrapper object represents the primitive value greater or less than the given.
inequality.class.tsAccessors
public get greater(): Greater<Value>
The get accessor obtains from the private #greater property an instance of the Greater with a primitive value from a given value of the Inequality constructor.
public get less(): Less<Value>
The get accessor obtains from the private #less property an instance of the Less with a primitive value from a given value of the Inequality constructor.
Properties
Methods
public greaterThan(): boolean
Checks whether the primitive value of a child class instance is greater than the given value.
public greaterThanEvery(): boolean
Checks whether the primitive value of a child class instance is greater than every value of the given values.
public greaterThanSome(): boolean
Checks whether the primitive value of a child class instance is greater than some given values.
public lessThan(): boolean
Checks whether the primitive value of a child class instance is less than the given value.
public lessThanEvery(): boolean
Checks whether the primitive value of a child class instance is less than every value of the given values.
public lessThanSome(): boolean
Checks whether the primitive value of a child class instance is less than some given values.
Last updated
