| Safe Haskell | Safe-Inferred | 
|---|
Control.Proxy.Synonym
Description
These type synonyms simplify type signatures when proxies do not use all their type variables.
Closed
Synonyms
type CoProducer p a' = p a' () () CSource
A CoPipe that produces values flowing upstream
CoProducers never respond.
type CoConsumer p b' = p C () b' ()Source
A CoConsumer that consumes values flowing upstream
CoConsumers never request.
type Client p a' a = p a' a () CSource
Client a' a sends requests of type a' and receives responses of
    type a.
Clients never respond.