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.
(
<*>.-$ ) :: C x => T v (x -> a) -> (v -> x) -> T v anumeric-prelude Algebra.Additive No documentation available.
(
<*>.*> ) :: C a x => T (a, v) (x -> c) -> (v -> x) -> T (a, v) cnumeric-prelude Algebra.Module No documentation available.
(
-<.> ) :: FilePath -> String -> FilePathshake 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"
(
<.> ) :: FilePath -> String -> FilePathshake 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"
-
vector-space Data.LinearMap Compose linear maps
(
<.> ) :: InnerSpace v => v -> v -> Scalar vvector-space Data.VectorSpace Inner/dot product
(
<.> ) :: FilePath -> String -> FilePathbasic-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"
(
<.> ) :: FilePath -> String -> FilePathclassy-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"
(
!=. ) :: 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
(
&&. ) :: 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