Last active
February 4, 2016 11:58
-
-
Save gdotdesign/f4b2c70bb1bd9a09b6c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sendAsEffect : Signal.Address a -> a -> (() -> b) -> Effects.Effects b | |
sendAsEffect address value action = | |
Signal.send address value | |
|> Effects.task | |
|> Effects.map action | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment