Copyright | (C) 2013-2016 University of Twente |
---|---|
License | BSD2 (see the file LICENSE) |
Maintainer | Christiaan Baaij <christiaan.baaij@gmail.com> |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
Documentation
data Signed (n :: Nat) Source #
Arbitrary-width signed integer represented by n
bits, including the sign
bit.
Uses standard 2-complements representation. Meaning that, given n
bits,
a Signed
n
number has a range of: [-(2^(n
-1)) .. 2^(n
-1)-1]
NB: The Num
operators perform wrap-around
on overflow. If you want
saturation on overflow, check out the SaturatingNum
class.
>>>
maxBound :: Signed 3
3>>>
minBound :: Signed 3
-4>>>
read (show (minBound :: Signed 3)) :: Signed 3
-4>>>
1 + 2 :: Signed 3
3>>>
2 + 3 :: Signed 3
-3>>>
(-2) + (-3) :: Signed 3
3>>>
2 * 3 :: Signed 4
6>>>
2 * 4 :: Signed 4
-8>>>
(2 :: Signed 3) `times` (4 :: Signed 4) :: Signed 7
8>>>
(2 :: Signed 3) `plus` (3 :: Signed 3) :: Signed 4
5>>>
(-2 :: Signed 3) `plus` (-3 :: Signed 3) :: Signed 4
-5>>>
satPlus SatSymmetric 2 3 :: Signed 3
3>>>
satPlus SatSymmetric (-2) (-3) :: Signed 3
-3