Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 437 Bytes

File metadata and controls

16 lines (11 loc) · 437 Bytes

NumberRoundingMode

Number rounding behavior:

  • CEIL: Always round up (3.1 becomes 4)
  • FLOOR: Always round down (3.9 becomes 3)
  • ROUND_CLOSEST: Round to nearest (3.4 becomes 3, 3.6 becomes 4)
Value
"CEIL"
"FLOOR"
"ROUND_CLOSEST"

[Back to Model list] [Back to API list] [Back to README]