hydra-0.1.1: Type-aware transformations for data and programs
Safe HaskellSafe-Inferred
LanguageHaskell2010

Hydra.Lib.Flows

Description

Haskell implementations of hydralibflows primitives

Documentation

apply :: Flow s (a -> b) -> Flow s a -> Flow s b Source #

bind :: Flow s a -> (a -> Flow s b) -> Flow s b Source #

map :: (a -> b) -> Flow s a -> Flow s b Source #

pure :: a -> Flow s a Source #