#elisp
Function:
round number &optional divisorThis returns number , converted to an integer by rounding towards the
nearest integer. Rounding a value equidistant between two integers
returns the even integer.
(round 1.2) ⇒ 1
(round 1.7) ⇒ 2
(round -1.2) ⇒ -1
(round -1.7) ⇒ -2
If you want to change selection, open document below and click on "Move attachment"
GNU Emacs Lisp Reference Manual: Numeric Conversions: ceiling number &optional divisor This returns number , converted to an integer by rounding upward
(towards positive infinity).
(ceiling 1.2)
⇒ 2
(ceiling 1.7)
⇒ 2
(ceiling -1.2)
⇒ -1
(ceiling -1.7)
⇒ -1
<span>Function: round number &optional divisor This returns number , converted to an integer by rounding towards the
nearest integer. Rounding a value equidistant between two integers
returns the even integer.
(round 1.2)
⇒ 1
(round 1.7)
⇒ 2
(round -1.2)
⇒ -1
(round -1.7)
⇒ -2
Next: Arithmetic Operations, Previous: Comparison of Numbers, Up: Numbers [Contents][Index]
<span><body><html> Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details