Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

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

  1. (<.>) :: Apply f => f (a -> b) -> f a -> f b

    semigroupoids Data.Functor.Bind

    No documentation available.

  2. (<*.>) :: Apply f => MaybeApply f (a -> b) -> f a -> f b

    semigroupoids Data.Functor.Bind.Class

    Apply a possibly-empty-with-unit container of functions to a non-empty container of values.

  3. (<.) :: Apply f => f a -> f b -> f a

    semigroupoids Data.Functor.Bind.Class

    a <. b = const <$> a <.> b
    

  4. (<.*>) :: Apply f => f (a -> b) -> MaybeApply f a -> f b

    semigroupoids Data.Functor.Bind.Class

    Apply a non-empty container of functions to a possibly-empty-with-unit container of values.

  5. (<.>) :: Apply f => f (a -> b) -> f a -> f b

    semigroupoids Data.Functor.Bind.Class

    No documentation available.

  6. (<<.) :: Biapply p => p a b -> p c d -> p a b

    semigroupoids Data.Functor.Bind.Class

    a <. b ≡ const <$> a <.> b
    

  7. (<<.>>) :: Biapply p => p (a -> b) (c -> d) -> p a c -> p b d

    semigroupoids Data.Functor.Bind.Class

    No documentation available.

  8. (!<<.) :: Bits a => a -> Int -> a

    base-compat Data.Bits.Compat

    Infix version of unsafeShiftL.

  9. (!>>.) :: Bits a => a -> Int -> a

    base-compat Data.Bits.Compat

    Infix version of unsafeShiftR.

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

    persistent Database.Persist

    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 103 of many | Previous | Next