module HaskellWorks.Prim.BitsSpec (spec) where import HaskellWorks.Hspec.Hedgehog import Hedgehog import Test.Hspec import qualified HaskellWorks.Prim.Bits.Fast as F import qualified HaskellWorks.Prim.Bits.Slow as S import qualified Hedgehog.Gen as G import qualified Hedgehog.Range as R {-# ANN module ("HLint: ignore Redundant do" :: String) #-} {-# ANN module ("HLint: ignore Reduce duplication" :: String) #-} spec :: Spec spec = describe "HaskellWorks.Prim.BitsSpec" $ do it "pdep64 behaves the same" $ require $ property $ do a <- forAll $ G.word64 R.constantBounded b <- forAll $ G.word64 R.constantBounded S.pdep64 a b === F.pdep64 a b it "pdep32 behaves the same" $ require $ property $ do a <- forAll $ G.word32 R.constantBounded b <- forAll $ G.word32 R.constantBounded S.pdep32 a b === F.pdep32 a b