Integer extends Real



Operations
Boolean <=(Object)
Integer +(Integer)
Integer *(Integer)
Boolean >(Object)
List[Integer] upTo(Integer,Integer)
returns a List of Integers starting with the value of the target expression, up tothe value of the first paramter, incremented by the second parameter.
e.g. '1.upTo(10, 2)' evaluates to {1,3,5,7,9}
Boolean !=(Object)
Integer /(Integer)
Integer -()
List[Integer] upTo(Integer)
returns a List of Integers starting with the value of the target expression, up tothe value of the specified Integer, incremented by one.
e.g. '1.upTo(5)' evaluates to {1,2,3,4,5}
Boolean <(Object)
Integer -(Integer)
Boolean ==(Object)
Boolean >=(Object)