File: mathutils.rst

package info (click to toggle)
python-boltons 25.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,236 kB
  • sloc: python: 12,133; makefile: 159; sh: 7
file content (24 lines) | stat: -rw-r--r-- 783 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
``mathutils`` - Mathematical functions
======================================

.. automodule:: boltons.mathutils

.. autoclass:: boltons.mathutils.Bits
   :members:
   :undoc-members:

Alternative Rounding Functions
------------------------------

.. autofunction:: boltons.mathutils.clamp

.. autofunction:: boltons.mathutils.ceil

.. autofunction:: boltons.mathutils.floor

Note: :func:`ceil` and :func:`floor` functions are based on `this example`_ using from the
:mod:`bisect` module in the standard library. Refer to this `StackOverflow Answer`_ for further information regarding
the performance impact of this approach.

.. _this example: https://docs.python.org/3/library/bisect.html#searching-sorted-lists
.. _StackOverflow Answer: http://stackoverflow.com/a/12141511/811740