'ceil'
'floor'
'expand'
'trunc'
'halfCeil'
ceil
floor
'halfFloor'
'halfExpand'
expand
trunc
'halfTrunc'
'halfEven'
halfExpand
'halfOdd'
Generated using TypeDoc
'ceil'
: Round towards positive infinity.'floor'
: Round towards negative infinity.'expand'
: Round away from zero.'trunc'
: Round towards zero.'halfCeil'
: Values above or equal to the half-increment round likeceil
, otherwise likefloor
.'halfFloor'
: Values above the half-increment round likeceil
, otherwise likefloor
.'halfExpand'
: Values above or equal to the half-increment round likeexpand
, otherwise liketrunc
.'halfTrunc'
: Values above the half-increment round likeexpand
, otherwise liketrunc
.'halfEven'
: LikehalfExpand
, except that on the half-increment values round towards the nearest even digit.'halfOdd'
: LikehalfExpand
, except that on the half-increment values round towards the nearest odd digit.