Module

JS.Iterator.ST

Package
purescript-js-iterators
Repository
gbagan/purescript-js-iterators

#Iterator Source

data Iterator :: Region -> Type -> Typedata Iterator t0 t1

#iterator Source

iterator :: forall r a. Iterable a -> ST r (Iterator r a)

#nextImpl Source

nextImpl :: forall r a. STFn3 (Iterator r a) (Maybe a) (a -> Maybe a) r (Maybe a)

#next Source

next :: forall r a. Iterator r a -> ST r (Maybe a)