From 3ec2c97eabb6a7cde073f1c91857f408122fe1ec Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Mon, 25 Jan 2021 02:08:09 +0000 Subject: [PATCH] #45 Export BitVec and BitMVec constructors --- src/Data/Bit.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Data/Bit.hs b/src/Data/Bit.hs index 66599fb..cdd26ff 100644 --- a/src/Data/Bit.hs +++ b/src/Data/Bit.hs @@ -1,4 +1,5 @@ {-# LANGUAGE CPP #-} +{-# OPTIONS_HADDOCK prune #-} #ifndef BITVEC_THREADSAFE -- | @@ -22,6 +23,8 @@ module Data.Bit module Data.Bit.ThreadSafe #endif ( Bit(..) + , U.Vector(BitVec) + , U.MVector(BitMVec) , unsafeFlipBit , flipBit @@ -71,6 +74,7 @@ module Data.Bit.ThreadSafe ) where import Prelude hiding (and, or) +import qualified Data.Vector.Unboxed as U #ifndef BITVEC_THREADSAFE import Data.Bit.F2Poly