Binary comparison operators for Container()
objects and
derived classes.
Usage
# S3 method for class 'Container'
x == y
# S3 method for class 'Container'
x != y
# S3 method for class 'Container'
x < y
# S3 method for class 'Container'
x > y
# S3 method for class 'Container'
x <= y
# S3 method for class 'Container'
x >= y
Arguments
- x, y
at least one must be a
Container()
object (or an object of one of the derived classes) while the other must be at least iterable.
Details
x == y
isTRUE
if the contents ofx
andy
are lexicographically equal.x != y
isTRUE
if the contents ofx
andy
are not equal.x < y
isTRUE
if the contents of x are lexicographically less than the contents of y.x <= y
isTRUE
if the contents of x are lexicographically less than or equal to the contents of y.