mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
This gives clear indication what modules are now deprecated and reduce clutter in non-deprecated module directories.
19 lines
509 B
Nim
19 lines
509 B
Nim
#
|
|
#
|
|
# 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`,
|
|
`<=`, `<`
|