Integer

Operations

-(): Integer
Returns (0 -i).
Syntax and SQL template: -self
abs(): Integer
Returns the absolute value of self.
+(i: Integer): Integer
Returns the sum of self and i.
Syntax and SQL template: self + i
-(i: Integer): Integer
Returns the difference of self and i.
Syntax and SQL template: self - i
*(i: Integer): Integer
Returns the product of self and i.
Syntax and SQL template: self * i
div(i: Integer): Integer
Returns the number of times i completely fits within self.
Syntax: self div i
mod(i: Integer): Integer
Returns self modulo i.
Syntax: self mod i
max(i: Integer): Integer
Returns the maximum of self and i.
min(i: Integer): Integer
Returns the minimum of self and i.
toChar(): String [I]
Returns a string of length 1, containing the unicode character with the value self.