<

Returns true if its first operand is less than its second operand.

The floating-point behavior of this function is platform-dependent.

Exported from

Modifiers

open

Arguments

object1An instance of <object>.
object2An instance of <object>.

Values

booleanAn instance of <boolean>.

See also

Summary
Returns true if its first operand is less than its second operand.
Built-in <real> numbers are compared by mathematical value.
The method on <character> compares the ordinal value of the characters’ underlying character set.
The method on <string> compares strings by comparing elements from left to right, using < and = on corresponding elements, and stopping when the elements are not =.

Functions

&lt;

Built-in <real> numbers are compared by mathematical value.

&lt;

The method on <character> compares the ordinal value of the characters’ underlying character set.  Character case is significant.

&lt;

The method on <string> compares strings by comparing elements from left to right, using < and = on corresponding elements, and stopping when the elements are not =.  If one string is a strict prefix of the other, the shorter string is considered the smaller one.  For variations on string comparison (such as comparisons that ignore case), different comparison operators must be used.

The class of real numbers.
The class of characters.
The class of sequences with elements that are characters.
Returns true if its first operand is less than its second operand.
Compares two objects for equality.
The common-dylan module.
Whenever possible, we have tried to keep the Dylan module pristine and unextended, preferring to add our extensions to separate modules or libraries.
The class of all Dylan objects.
The class of boolean values.
Dylan provides an identity function, as well as a group of equality and magnitude comparison functions that can be extended for user classes.