From ec97195d8f2319fa74f957f1e493034d7f2a0be0 Mon Sep 17 00:00:00 2001 From: def Date: Thu, 5 Mar 2015 17:35:13 +0100 Subject: [PATCH] Add unsigned exports for backwards-compatibility --- lib/core/unsigned.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/unsigned.nim b/lib/core/unsigned.nim index 18bb92ee37..fa8bb91c96 100644 --- a/lib/core/unsigned.nim +++ b/lib/core/unsigned.nim @@ -13,3 +13,6 @@ ## These operators are now available in the ``system`` module directly. {.deprecated.} + +export `shr`, `shl`, `and`, `or`, `xor`, `==`, `+`, `-`, `*`, `div`, `mod`, + `<=`, `<`