Fork me on GitHub
#re-frame
<
2019-05-20
>
caleb.macdonaldblack03:05:12

I think it would be handy for the shorthand input signal (`:<-`) to support forwarding the arguments from the handling subscription. I can see needing to do that more often than hard coding arguments. I can see cases when you wouldn't want it to forward so maybe something optional. What are peoples thoughts on this?

👍 4
caleb.macdonaldblack03:05:46

Also I'm aware you can use the anonymous function variant to get that behaviour

xfyre06:05:29

@lilactown yes, that makes sense, thanks!

mikethompson21:05:51

@caleb.macdonaldblack yeah, I almost regret facilitating the shortcut :<- as an alternative to writing a signal functions Almost. It is certainly easier to explain, and understand, when there is only one way to do something. Sugar is seldom good. :-)

caleb.macdonaldblack22:05:31

Fair enough. I might break the habit and start using the function instead