Skip to content

Commit

Permalink
Split BinaryWord into a separate library.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvv committed Apr 9, 2014
1 parent 167b838 commit 1929c27
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 453 deletions.
1 change: 1 addition & 0 deletions data-dword.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Library
Build-Depends:
base >= 4.6 && < 5,
hashable >= 1.1,
data-bword >= 0.1,
template-haskell >= 2.8,
ghc-prim
Hs-Source-Dirs: src
Expand Down
4 changes: 3 additions & 1 deletion src/Data/DoubleWord.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
-- signed and unsigned binary word data types of sizes 96, 128,
-- 160, 192, 224, and 256 bits.
module Data.DoubleWord
( module Data.DoubleWord.Base
( module Data.BinaryWord
, module Data.DoubleWord.Base
, Word96(..)
, Word128(..)
, Word160(..)
Expand All @@ -27,6 +28,7 @@ import Data.Data
import GHC.Generics
import Data.Word
import Data.Int
import Data.BinaryWord
import Data.DoubleWord.Base
import Data.DoubleWord.TH

Expand Down
Loading

0 comments on commit 1929c27

Please sign in to comment.