Module

Pipes.Construct

Package
purescript-node-stream-pipes
Repository
cakekindel/purescript-node-stream-pipes

#monotonic Source

monotonic :: forall m. MonadRec m => Int -> Producer Int m Unit

#range Source

range :: forall m. MonadRec m => Int -> Int -> Producer Int m Unit

#eachArray Source

eachArray :: forall a m. MonadRec m => Array a -> Producer a m Unit

Stack-safe producer that yields every value in an Array

#eachList Source

eachList :: forall a m. MonadRec m => List a -> Producer a m Unit

Stack-safe producer that yields every value in a List

#eachMap Source

eachMap :: forall k v m. MonadEffect m => MonadRec m => Map k v -> Producer (k /\ v) m Unit

Stack-safe producer that yields every value in a Map