Vocabularymath.
functionsInputsOutputsWord descriptionOutputs the whole number closest to
x, rounding out at half, breaking ties towards odd numbers.
NotesThe result is not necessarily an integer.
ExamplesUSING: math.functions prettyprint ;
0.5 round-to-odd .
1.0
USING: math.functions prettyprint ;
1.5 round-to-odd .
1.0
DefinitionMethods