Syntax
set anInteger = aFloat.floor()
Semantics floor() returns the highest integer less than or equal to the float (see Wikipedia: floor function for more information).
SubstitutablesaFloat Can be any variable or object attribute having the type Float
Examples
set anInteger = aFloat.floor();
Related Pages:
Related Documentation:

  • No labels