Plain source file: hsrc/sp/SP.hs (2015-10-07)
Related manual pages: SP
SP is imported by: Fudget, StreamProcIO, StreamProc, Spops, Spinterp, SpEither, SPstateMonad, SPmonad, ParSP, Loopthrough, Loop, IdempotSP, Dynforkmerge, CompSP, SpIO, DialogueSpIO, CompF, BranchF.
module SP where import ShowFun() -- show instance for function types data SP a b = PutSP b (SP a b) | GetSP (a -> SP a b) | NullSP deriving (Show)