Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

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

    bv Data.BitVector

    Left shift.

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

    bv Data.BitVector

    Rotate left.

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

    bv Data.BitVector

    Fixed-size less-than-or-equals.

  4. (==.) :: 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
    

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

    bv Data.BitVector

    Fixed-size greater-than.

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

    bv Data.BitVector

    Fixed-size greater-than-or-equals.

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

    bv Data.BitVector

    Logical right shift.

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

    bv Data.BitVector

    Rotate right.

  9. (@.) :: Integral ix => BV -> ix -> Bool

    bv Data.BitVector

    Bit indexing. u @. i stands for the i-th bit of u.

    >>> [4]2 @. 0
    False
    
    >>> [4]2 @. 1
    True
    

  10. (!=.) :: forall v typ . PersistField typ => EntityField v typ -> typ -> Filter v

    classy-prelude-yesod ClassyPrelude.Yesod

    Non-equality check.

    Examples

    selectSimon :: MonadIO m => ReaderT SqlBackend m [Entity User]
    selectSimon = selectList [UserName !=. "SPJ" ] []
    
    The above query when applied on dataset-1, will produce this:
    +-----+-----+-----+
    |id   |name |age  |
    +-----+-----+-----+
    |2    |Simon|41   |
    +-----+-----+-----+
    

Page 155 of many | Previous | Next