diff options
Diffstat (limited to 'lib/deprecated/core')
-rw-r--r-- | lib/deprecated/core/unsigned.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/deprecated/core/unsigned.nim b/lib/deprecated/core/unsigned.nim new file mode 100644 index 000000000..93a29e1c9 --- /dev/null +++ b/lib/deprecated/core/unsigned.nim @@ -0,0 +1,18 @@ +# +# +# Nim's Runtime Library +# (c) Copyright 2012 Andreas Rumpf +# +# See the file "copying.txt", included in this +# distribution, for details about the copyright. +# + +## **Warning:** Since version 0.11.4 this module is deprecated. +## +## This module implemented basic arithmetic operators for unsigned integers. +## These operators are now available in the ``system`` module directly. + +{.deprecated.} + +export `shr`, `shl`, `and`, `or`, `xor`, `==`, `+`, `-`, `*`, `div`, `mod`, + `<=`, `<` |