hxt-8.2.0: A collection of tools for processing XML with Haskell.Source codeContentsIndex
Control.Arrow.IOStateListArrow
Portabilityportable
Stabilityexperimental
MaintainerUwe Schmidt (uwe\@fh-wedel.de)
Description
Implementation of arrows with IO and a state
Synopsis
newtype IOSLA s a b = IOSLA {
runIOSLA :: s -> a -> IO (s, [b])
}
liftSt :: IOSLA s1 b c -> IOSLA (s1, s2) b c
runSt :: s2 -> IOSLA (s1, s2) b c -> IOSLA s1 b c
Documentation
newtype IOSLA s a b Source
list arrow combined with a state and the IO monad
Constructors
IOSLA
runIOSLA :: s -> a -> IO (s, [b])
show/hide Instances
liftSt :: IOSLA s1 b c -> IOSLA (s1, s2) b cSource

lift the state of an IOSLA arrow to a state with an additional component.

This is uesful, when running predefined IO arrows, e.g. for document input, in a context with a more complex state component.

runSt :: s2 -> IOSLA (s1, s2) b c -> IOSLA s1 b cSource

run an arrow with augmented state in the context of a simple state arrow. An initial value for the new state component is needed.

This is useful, when running an arrow with an extra environment component, e.g. for namespace handling in XML.

Produced by Haddock version 2.4.2