numeric-prelude-0.1.1: An experimental alternative hierarchy of numeric type classesSource codeContentsIndex
NumericPrelude.Elementwise
Synopsis
newtype T v a = Cons {
run :: v -> a
}
with :: a -> T v a
element :: (v -> a) -> T v a
run2 :: T (x, y) a -> x -> y -> a
Documentation
newtype T v a Source
A reader monad for the special purpose of defining instances of certain operations on tuples and records. It does not add any new functionality to the common Reader monad, but it restricts the functions to the required ones and exports them from one module. That is you do not have to import both Control.Monad.Trans.Reader and Control.Applicative. The type also tells the user, for what the Reader monad is used. We can more easily replace or extend the implementation when needed.
Constructors
Cons
run :: v -> a
show/hide Instances
with :: a -> T v aSource
element :: (v -> a) -> T v aSource
run2 :: T (x, y) a -> x -> y -> aSource
Produced by Haddock version 2.4.2