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

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

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

  4. (^.) :: b -> Lens b c -> c

    data-lens-light Data.Lens.Light

    Infix version of getL (with the reverse order of the arguments)

  5. (-<.>) :: RawFilePath -> ByteString -> RawFilePath

    filepath-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"
    

  6. (<.>) :: RawFilePath -> ByteString -> RawFilePath

    filepath-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"
    

  7. (-<.>) :: RawFilePath -> ByteString -> RawFilePath

    filepath-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"
    

  8. (<.>) :: RawFilePath -> ByteString -> RawFilePath

    filepath-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"
    

  9. ( #. ) :: (b % 1 -> c) -> (a % 1 -> b) -> a % 1 -> c

    linear-base Simple.Pure

    No documentation available.

  10. 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).

Page 135 of many | Previous | Next