Could you please explain me what does mean in Elm next statement?
(=>) = (,)
I found it in the example of Elm architecture tutorial
This is infix notation. In effect, this defines a function
(=>) = \a b -> (a,b)
Infix is then used without the brackets, so
a => b == (a,b)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With