Comparison
Comparison operations produce boolean Timestreams.
Important
In addition to the chainable methods, standard operators are implemented where appropriate. For instance, a.ge(b) may be written as a >= b. See the notes on the specific functions for more information.
To respect the semantics of __eq__ and __ne__, a == b and a != b are not overloaded.
| Timestream.eq | Return a Timestream that is true if this is equal to other. |
| Timestream.ge | Return a TimeStream that is true if this is greater than or equal to rhs. |
| Timestream.gt | Return a Timestream that is true if this is greater than rhs. |
| Timestream.le | Return a Timestream that is true if this is less than or equal to rhs. |
| Timestream.lt | Return a Timestream that is true if this is less than rhs. |
| Timestream.ne | Return a Timestream that is true if this is not equal to other. |
| Timestream.is_null | Return a boolean Timestream containing true when self is null. |
| Timestream.is_not_null | Return a boolean Timestream containing true when self is not null. |