Created
July 9, 2019 23:04
-
-
Save neongreen/1d51fa7c13c01d275e56f81e55dfe60d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Pipes.Core | |
( -- * Proxy Monad Transformer | |
-- $proxy | |
Proxy | |
, runEffect | |
, -- * Categories | |
-- $categories | |
-- ** Respond | |
-- $respond | |
respond | |
, (/>/) | |
, (//>) | |
, -- ** Request | |
-- $request | |
request | |
, (\>\) | |
, (>\\) | |
, -- ** Push | |
-- $push | |
push | |
, (>~>) | |
, (>>~) | |
, -- ** Pull | |
-- $pull | |
pull | |
, (>+>) | |
, (+>>) | |
, -- ** Reflect | |
-- $reflect | |
reflect | |
, -- * Concrete Type Synonyms | |
X | |
, Effect | |
, Producer | |
, Pipe | |
, Consumer | |
, Client | |
, Server | |
, -- * Polymorphic Type Synonyms | |
Effect' | |
, Producer' | |
, Consumer' | |
, Client' | |
, Server' | |
, -- * Flipped operators | |
(\<\) | |
, (/</) | |
, (<~<) | |
, (~<<) | |
, (<+<) | |
, (<\\) | |
, (//<) | |
, (<<+) | |
, -- * Re-exports | |
closed | |
) | |
where |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment