Skip to content

Commit

Permalink
#45 Export BitVec and BitMVec constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Jun 10, 2021
1 parent 7150061 commit 3ec2c97
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Data/Bit.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE CPP #-}
{-# OPTIONS_HADDOCK prune #-}

#ifndef BITVEC_THREADSAFE
-- |
Expand All @@ -22,6 +23,8 @@ module Data.Bit
module Data.Bit.ThreadSafe
#endif
( Bit(..)
, U.Vector(BitVec)
, U.MVector(BitMVec)

, unsafeFlipBit
, flipBit
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3ec2c97

Please sign in to comment.