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