Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
. ) :: forall (b :: k) (c :: k) (a :: k) . Category cat => cat b c -> cat a b -> cat a cdimensional Numeric.Units.Dimensional.Prelude morphism composition
(
. ) :: (b -> c) -> (a -> b) -> a -> cdistribution-opensuse OpenSuse.Prelude Right to left function composition.
(f . g) x = f (g x)
f . id = f = id . f
Examples
>>> map ((*2) . length) [[], [0, 1, 2], [0]] [0,6,2]
>>> foldr (.) id [(+1), (*3), (^3)] 2 25
>>> let (...) = (.).(.) in ((*2)...(+)) 5 10 30
(
. ) :: (b -> c) -> (a -> b) -> a -> cfaktory Faktory.Prelude Right to left function composition.
(f . g) x = f (g x)
f . id = f = id . f
Examples
>>> map ((*2) . length) [[], [0, 1, 2], [0]] [0,6,2]
>>> foldr (.) id [(+1), (*3), (^3)] 2 25
>>> let (...) = (.).(.) in ((*2)...(+)) 5 10 30
(
. ) :: (b -> c) -> (a -> b) -> a -> chledger-web Hledger.Web.Import Right to left function composition.
(f . g) x = f (g x)
f . id = f = id . f
Examples
>>> map ((*2) . length) [[], [0, 1, 2], [0]] [0,6,2]
>>> foldr (.) id [(+1), (*3), (^3)] 2 25
>>> let (...) = (.).(.) in ((*2)...(+)) 5 10 30
(
. ) :: (b <-> c) -> (a <-> b) -> a <-> cinvertible Data.Invertible.Function Bijection composition
(
. ) :: (b <-> c) -> (a <-> b) -> a <-> cinvertible Data.Invertible.Prelude Bijection composition
(
. ) :: JExpr -> String -> JExprjmacro Language.Javascript.JMacro.Util No documentation available.
(
. ) :: (b -> c) -> (a -> b) -> a -> cbetween Data.Function.Between.Strict.Internal Strict variant of function composition. Defined as:
(f . g) x = f $! g $! x
Internally used since version 0.10.0.0. Moved to Data.Function.Between.Strict.Internal module and exposed in version 0.11.0.0.(
. ) :: forall (b :: k) (c :: k) (a :: k) . Category cat => cat b c -> cat a b -> cat a cclassy-prelude-yesod ClassyPrelude.Yesod morphism composition
-
constrained-categories Control.Category.Constrained No documentation available.