Move deprecated modules into lib/deprecated/

This gives clear indication what modules are now deprecated and reduce clutter
in non-deprecated module directories.
This commit is contained in:
Adam Strzelecki
2015-09-29 22:34:57 +02:00
parent 4071219e20
commit 144dc8f8ad
10 changed files with 5 additions and 0 deletions

View File

@@ -1,18 +0,0 @@
#
#
# 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`,
`<=`, `<`