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. (<*>.-$) :: C x => T v (x -> a) -> (v -> x) -> T v a

    numeric-prelude Algebra.Additive

    No documentation available.

  2. (<*>.*>) :: C a x => T (a, v) (x -> c) -> (v -> x) -> T (a, v) c

    numeric-prelude Algebra.Module

    No documentation available.

  3. (-<.>) :: FilePath -> String -> FilePath

    shake Development.Shake.FilePath

    Remove the current extension and add another, equivalent to replaceExtension.

    "/directory/path.txt" -<.> "ext" == "/directory/path.ext"
    "/directory/path.txt" -<.> ".ext" == "/directory/path.ext"
    "foo.o" -<.> "c" == "foo.c"
    

  4. (<.>) :: FilePath -> String -> FilePath

    shake Development.Shake.FilePath

    Add an extension, even if there is already one there, equivalent to addExtension.

    "/directory/path" <.> "ext" == "/directory/path.ext"
    "/directory/path" <.> ".ext" == "/directory/path.ext"
    

  5. (*.*) :: (HasTrie (Basis u), HasBasis v, HasTrie (Basis v), VectorSpace w, Scalar v ~ Scalar w) => (v :-* w) -> (u :-* v) -> u :-* w

    vector-space Data.LinearMap

    Compose linear maps

  6. (<.>) :: InnerSpace v => v -> v -> Scalar v

    vector-space Data.VectorSpace

    Inner/dot product

  7. (<.>) :: FilePath -> String -> FilePath

    basic-prelude CorePrelude

    Add an extension, even if there is already one there, equivalent to addExtension.

    "/directory/path" <.> "ext" == "/directory/path.ext"
    "/directory/path" <.> ".ext" == "/directory/path.ext"
    

  8. (<.>) :: FilePath -> String -> FilePath

    classy-prelude ClassyPrelude

    Add an extension, even if there is already one there, equivalent to addExtension.

    "/directory/path" <.> "ext" == "/directory/path.ext"
    "/directory/path" <.> ".ext" == "/directory/path.ext"
    

  9. (!=.) :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (Value typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator !=. Example:

    where_ $ user ^. UserName !=. val Bob
    

  10. (&&.) :: SqlExpr (Value Bool) -> SqlExpr (Value Bool) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator AND. Example:

    where_ $
    user ^. UserName ==. val Matt
    &&. user ^. UserAge >=. val 21
    

Page 115 of many | Previous | Next