Object is a root of the class hiearchy: every class has
a object as a superclass.
Methods
Clone (shallow copy) this object.
Compares this object and 'other'. Returns -1 if this < other,
0 if this == other, 1 if this > other.
Copy (deep copy) this object.
Iterates through the elements of this object and
executes given callback.
Checks if this object and 'other' equals.
Return hashcode for this object.
Returns new iterator containing all the values of
this object piped through converter.
Generated iterator is evaluted lazily - only when more elements
are retrieved.
| Parameters |
converter -
Callable converter, receiving parameters (value, key)
|
Returns new iterator that contains all values of this object for
which the given selector returned true.
Generated iterator is evaluted lazily - only when more elements
are retrieved.
| Parameters |
selector -
Callable selector, receiving parameters (value, key)
|
Converts this object to boolean.
Converts this object to string.