Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. newtype ((f :: k2 -> Type) :.: (g :: k1 -> k2)) (p :: k1)

    barbies Barbies.Internal

    Composition of functors

  2. (^.^) :: Num a => Point a -> Point a -> a

    cubicbezier Geom2D

    Dot product of two vectors.

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

    easy-file System.EasyFile

    Alias to addExtension, for people who like that sort of thing.

  4. pattern (:*.) :: a -> LL a ds -> LL a ('() ': ds)

    hetero-parameter-list Data.HeteroParList

    No documentation available.

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

    hledger Hledger.Cli.Script

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

    hledger Hledger.Cli.Script

    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. (^.) :: s -> FoldLike a s t a b -> a

    lens-family-core Lens.Family

    (^.) :: s -> Getter s t a b -> a
    
    Access the value referenced by a getter or lens.
    (^.) :: Monoid a => s -> Fold s t a b -> a
    
    Access the monoidal summary referenced by a traversal or a fold.

  8. (^..) :: s -> FoldLike [a] s t a b -> [a]

    lens-family-core Lens.Family

    (^..) :: s -> Fold s t a b -> [a]
    
    Returns a list of all of the referenced values in order.

  9. (<.=) :: forall k b s m (is :: IxList) a . (PermeableOptic k b, MonadState s m) => Optic k is s s a b -> b -> m (ViewResult k b)

    optics-extra Optics.State.Operators

    Set with pass-through. This is useful for chaining assignment without round-tripping through your Monad stack.

  10. (<<.=) :: forall k a s m (is :: IxList) b . (PermeableOptic k a, MonadState s m) => Optic k is s s a b -> b -> m (ViewResult k a)

    optics-extra Optics.State.Operators

    Replace the target of a PermeableOptic into your Monad's state with a user supplied value and return the old value that was replaced.

Page 131 of many | Previous | Next