![]() |
| ||||||
Navigation |
Synopsis Less than or equal operator on datetime values.
Syntax
Exp1 <= Exp2
Types
Description Yields
true if the datetime value of Exp1 is earlier in time than the datetime value
of Exp2 or if the values of Exp1 and Exp2 are equal, and false otherwise.
Examples
rascal>$2010-07-15 <= $2010-07-15; ^ Parse error here rascal>$2011-07-15 <= $2010-07-14; ^ Parse error here ![]() |