product-isomorphic-0.0.3.2: Weaken applicative functor on products

Copyright2017 Kei Hibino
LicenseBSD3
Maintainerex8k.hibino@gmail.com
Stabilityexperimental
Portabilityunknown
Safe HaskellNone
LanguageHaskell2010

Data.Functor.ProductIsomorphic.Instances

Contents

Description

This module defines functor instances morphed functions are restricted to products.

Synopsis

Documentation

newtype WrappedFunctor f a Source #

Wrapped functor type to make instances of product-iso functors.

Constructors

WrapFunctor 

Fields

newtype WrappedAlter f a b Source #

Wrapped Const Alternative objects to make instances like Const functor.

Constructors

WrapAlter 

Fields

Instances

Alternative f => ProductIsoApplicative (WrappedAlter f a) Source # 

Methods

pureP :: ProductConstructor a => a -> WrappedAlter f a a Source #

(|*|) :: WrappedAlter f a (a -> b) -> WrappedAlter f a a -> WrappedAlter f a b Source #

ProductIsoFunctor (WrappedAlter f a) Source # 

Methods

(|$|) :: ProductConstructor (a -> b) => (a -> b) -> WrappedAlter f a a -> WrappedAlter f a b Source #

Alternative f => ProductIsoEmpty (WrappedAlter f a) () Source # 

Methods

pureE :: WrappedAlter f a () Source #

peRight :: WrappedAlter f a (a, ()) -> WrappedAlter f a a Source #

peLeft :: WrappedAlter f a ((), a) -> WrappedAlter f a a Source #

Orphan instances

Monoid a => ProductIsoApplicative (Const * a) Source # 

Methods

pureP :: ProductConstructor a => a -> Const * a a Source #

(|*|) :: Const * a (a -> b) -> Const * a a -> Const * a b Source #

ProductIsoFunctor (Const * a) Source # 

Methods

(|$|) :: ProductConstructor (a -> b) => (a -> b) -> Const * a a -> Const * a b Source #

Monoid a => ProductIsoEmpty (Const * a) () Source # 

Methods

pureE :: Const * a () Source #

peRight :: Const * a (a, ()) -> Const * a a Source #

peLeft :: Const * a ((), a) -> Const * a a Source #