 
ยค startupSP
Stream processor manipulation
Types
startupSP :: [a] -> SP a b -> SP a b
Synopsis
startupSP msgs sp
Description
Input stream prepending operator
Arguments
- msgs :: [a]
- 	messages that are prepended to the input stream of sp.
- sp :: SP a b
- 		a stream processor.
 
 
Equalities
  startupSP xs sp = sp `serCompSP` putsSP xs idSP
See Also
getSP, putSP,
idSP, serCompSP,
delaySP.
