diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2019-10-24 09:07:21 -0300 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-10-24 14:07:21 +0200 |
commit | 8f8916413f4ea902ec2718a12ad71a37a5331cc1 (patch) | |
tree | 351cfb39db5bb03cd2d6a691429b5e74ee4a2aa5 /lib | |
parent | 2baa21d461bb00df5710687e3d1647c754a9b06b (diff) | |
download | Nim-8f8916413f4ea902ec2718a12ad71a37a5331cc1.tar.gz |
[backport] Documentation Math module (#12460)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/math.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pure/math.nim b/lib/pure/math.nim index 79a8675a6..54f5bc33e 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -48,6 +48,8 @@ ## * `mersenne module<mersenne.html>`_ for Mersenne twister random number generator ## * `stats module<stats.html>`_ for statistical analysis ## * `strformat module<strformat.html>`_ for formatting floats for print +## * `system module<system.html>`_ Some very basic and trivial math operators +## are on system directly, to name a few ``shr``, ``shl``, ``xor``, ``clamp``, etc. include "system/inclrtl" |