summaryrefslogtreecommitdiff
path: root/devdocs/elisp/rounding-operations.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/elisp/rounding-operations.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/rounding-operations.html')
-rw-r--r--devdocs/elisp/rounding-operations.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/devdocs/elisp/rounding-operations.html b/devdocs/elisp/rounding-operations.html
deleted file mode 100644
index fc187005..00000000
--- a/devdocs/elisp/rounding-operations.html
+++ /dev/null
@@ -1,14 +0,0 @@
- <h3 class="section">Rounding Operations</h3> <p>The functions <code>ffloor</code>, <code>fceiling</code>, <code>fround</code>, and <code>ftruncate</code> take a floating-point argument and return a floating-point result whose value is a nearby integer. <code>ffloor</code> returns the nearest integer below; <code>fceiling</code>, the nearest integer above; <code>ftruncate</code>, the nearest integer in the direction towards zero; <code>fround</code>, the nearest integer. </p> <dl> <dt id="ffloor">Function: <strong>ffloor</strong> <em>float</em>
-</dt> <dd><p>This function rounds <var>float</var> to the next lower integral value, and returns that value as a floating-point number. </p></dd>
-</dl> <dl> <dt id="fceiling">Function: <strong>fceiling</strong> <em>float</em>
-</dt> <dd><p>This function rounds <var>float</var> to the next higher integral value, and returns that value as a floating-point number. </p></dd>
-</dl> <dl> <dt id="ftruncate">Function: <strong>ftruncate</strong> <em>float</em>
-</dt> <dd><p>This function rounds <var>float</var> towards zero to an integral value, and returns that value as a floating-point number. </p></dd>
-</dl> <dl> <dt id="fround">Function: <strong>fround</strong> <em>float</em>
-</dt> <dd><p>This function rounds <var>float</var> to the nearest integral value, and returns that value as a floating-point number. Rounding a value equidistant between two integers returns the even integer. </p></dd>
-</dl><div class="_attribution">
- <p class="_attribution-p">
- Copyright &copy; 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br>
- <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Rounding-Operations.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Rounding-Operations.html</a>
- </p>
-</div>