Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (/=.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size inequality. The negated version of ==..

  2. (<.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size less-than.

  3. (<<.) :: BV -> BV -> BV

    bv Data.BitVector

    Left shift.

  4. (<<<.) :: BV -> BV -> BV

    bv Data.BitVector

    Rotate left.

  5. (<=.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size less-than-or-equals.

  6. (==.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size equality. In contrast with ==, which is size-polymorphic, this equality requires both bit-vectors to be of equal size.

    >>> [n]k ==. [m]k
    False
    
    >>> [n]k ==. [n]k
    True
    

  7. (>.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size greater-than.

  8. (>=.) :: BV -> BV -> Bool

    bv Data.BitVector

    Fixed-size greater-than-or-equals.

  9. (>>.) :: BV -> BV -> BV

    bv Data.BitVector

    Logical right shift.

  10. (>>>.) :: BV -> BV -> BV

    bv Data.BitVector

    Rotate right.

Page 155 of many | Previous | Next