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.
(
\. ) :: forall (xs :: [Type]) y . Many xs -> y -> Many (Append xs '[y])data-diverse Data.Diverse.Many Infix version of snocMany. Mnemonic: Many is larger \. than the smaller element
(
/./ ) :: forall (xs :: [Type]) (ys :: [Type]) . Many xs -> Many ys -> Many (Append xs ys)data-diverse Data.Diverse.Many.Internal Infix version of append. Mnemonic: consMany ./ with an extra slash (meaning Many) in front.
(
\. ) :: forall (xs :: [Type]) y . Many xs -> y -> Many (Append xs '[y])data-diverse Data.Diverse.Many.Internal Infix version of snocMany. Mnemonic: Many is larger \. than the smaller element
-
data-lens-light Data.Lens.Light Infix version of getL (with the reverse order of the arguments)
(
-<.> ) :: RawFilePath -> ByteString -> RawFilePathfilepath-bytestring System.FilePath.Posix.ByteString 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"
(
<.> ) :: RawFilePath -> ByteString -> RawFilePathfilepath-bytestring System.FilePath.Posix.ByteString 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"
(
-<.> ) :: RawFilePath -> ByteString -> RawFilePathfilepath-bytestring System.FilePath.Windows.ByteString 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"
(
<.> ) :: RawFilePath -> ByteString -> RawFilePathfilepath-bytestring System.FilePath.Windows.ByteString 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"
(
#. ) :: (b % 1 -> c) -> (a % 1 -> b) -> a % 1 -> clinear-base Simple.Pure No documentation available.
newtype ((f :: k2 -> Type)
:.: (g :: k1 -> k2)) (x :: k1)linear-generics Generics.Linear The composition operator for types. We use our own here because for many classes, it's possible to share generic deriving classes between GHC.Generics and Generics.Linear by just instantiating them for both composition operators (and MP1).