unsigned.nim 509 B

12345678910111213141516171819
  1. #
  2. #
  3. # Nim's Runtime Library
  4. # (c) Copyright 2012 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## **Warning:** Since version 0.11.4 this module is deprecated.
  10. ##
  11. ## This module implemented basic arithmetic operators for unsigned integers.
  12. ## These operators are now available in the ``system`` module directly.
  13. {.deprecated.}
  14. export `shr`, `shl`, `and`, `or`, `xor`, `==`, `+`, `-`, `*`, `div`, `mod`,
  15. `<=`, `<`