Determines whether an object reference is non-null.
Determines whether an object reference is non-null.
a null value against which to compare the value passed to the constructor as left for inequality
true if the value passed to the constructor as left is non-null.
Determine whether a numeric object is outside the passed Interval, returning a Boolean.
Determine whether a numeric object is outside the passed Interval, returning a Boolean.
the Interval against which to compare the value passed to the constructor as left
true if the value passed to the constructor as left is not within the Interval passed to this method.
Compare two objects for inequality, returning a Boolean, using the Equality type class passed as equality.
Compare two objects for inequality, returning a Boolean, using the Equality type class passed as equality.
the object to compare for inequality with left, passed to the constructor
an implicit Equality type class that defines a way of calculating equality for objects of type L
true if the left and right objects are not equal according to the passed Equality type class.
Determine whether an object reference is null.
Determine whether an object reference is null.
a null value against which to compare the value passed to the constructor as left for equality
true if the value passed to the constructor as left is null.
Determine whether a numeric object is within the passed Interval, returning a Boolean.
Determine whether a numeric object is within the passed Interval, returning a Boolean.
the Interval against which to compare the value passed to the constructor as left
true if the value passed to the constructor as left is within the Interval passed to this method.
Compare two objects for equality, returning a Boolean, using the Equality type class passed as equality.
Compare two objects for equality, returning a Boolean, using the Equality type class passed as equality.
the object to compare for equality with left, passed to the constructor
an implicit Equality type class that defines a way of calculating equality for objects of type L
true if the left and right objects are equal according to the passed Equality type class.
Class used via an implicit conversion to enable any two objects to be compared with
===and!==with aBooleanresult and no enforced type constraint between two object types. For example:You can also check numeric values against another with a tolerance. Here are some examples: