Difference between revisions of "Yampa/pSwitch"

From HaskellWiki
Jump to navigation Jump to search
(New page: Image:Yampa pSwitch.png‎ <source lang="haskell"> pSwitch :: Functor col => (forall sf. (in -> col sf -> col (ext, sf))) -> col (SF ext out) -> SF (in, col ou...)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Image:Yampa pSwitch.png‎]]
+
[[Image:Yampa pSwitch.png|768px]]
   
 
<source lang="haskell">
 
<source lang="haskell">
Line 12: Line 12:
 
(download original [[:Image:Yampa pSwitch.svg|Yampa pSwitch.svg]])
 
(download original [[:Image:Yampa pSwitch.svg|Yampa pSwitch.svg]])
   
[[Yampa|Yampa switches]]
+
{{Yampa Switches}}
* [[Yampa/switch|switch]]
 
* [[Yampa/rSwitch|rSwitch]]
 
* [[Yampa/pSwitchB|pSwitchB]]
 
* [[Yampa/pSwitch|pSwitch]]
 
* [[Yampa/rpSwitchB|rpSwitchB]]
 
* [[Yampa/rpSwitch|rpSwitch]]
 

Latest revision as of 23:27, 24 June 2011

Yampa pSwitch.png

pSwitch :: Functor col
        => (forall sf. (in -> col sf -> col (ext, sf)))
        -> col (SF ext out)
        -> SF (in, col out) (Event mng)
        -> (col (SF ext out) -> mng -> SF in (col out))
        -> SF in (col out)

(download original Yampa pSwitch.svg)

Yampa switches