Copyright | (c) 2013-2015, Peter Trško |
---|---|
License | BSD3 |
Maintainer | peter.trsko@gmail.com |
Stability | experimental |
Portability | NoImplicitPrelude |
Safe Haskell | Safe |
Language | Haskell98 |
Definitions used by family of strict function combinators. These may come handy, but clash with definitions available via Prelude.
Module available since version 0.11.0.0.
Documentation
(.) :: (b -> c) -> (a -> b) -> a -> c infixr 9 Source
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.