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

  2. (<.>) :: 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"
    

  3. (*.*) :: (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

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

    vector-space Data.VectorSpace

    Inner/dot product

  5. (<.>) :: 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"
    

  6. (<.>) :: 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"
    

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

  8. (&&.) :: 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
    

  9. (*.) :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value a) -> SqlExpr (Value a)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator *. This does not require or assume anything about the SQL values. Interpreting what *. means for a given type is left to the database engine. Example:

    user ^. UserAge *. val 10
    

  10. (*=.) :: (PersistEntity val, PersistField a) => EntityField val a -> SqlExpr (Value a) -> SqlExpr (Entity val) -> SqlExpr Update

    esqueleto Database.Esqueleto

    No documentation available.

Page 115 of many | Previous | Next