bits-extra-0.0.1.3: Useful bitwise operations
Data.Bits.Pext
class Pext a where #
Bitwise parallel extosit. extosits bits from the source at the locations described by the mask.
Minimal complete definition
pext
Methods
pext :: a -> a -> a #
Defined in Data.Bits.Pext
pext :: Word -> Word -> Word #
pext :: Word8 -> Word8 -> Word8 #
pext :: Word16 -> Word16 -> Word16 #
pext :: Word32 -> Word32 -> Word32 #
pext :: Word64 -> Word64 -> Word64 #
fastPextEnabled :: Bool #
Runtime flag indicating whether the pext function is using the high-performance. BMI2 instruction set. A value of False indicates that pext is emulated.
False