can anyone provide a quick example of the syntax t...
# arrow
b
can anyone provide a quick example of the syntax that replaces the "! effect {...}" syntax ... and is this already in 0.10.4-SNAPSHOT ?
r
None of the new 'by' comprehensions syntax or features we saw today are in the arrow snapshot yet
They are all currently in 'rr-type-conversions', a branch of meta
Or meta master in the case of comprehensions
j
What is the syntax when binding Unit/Nothing returning elements?
Copy code
// My guess is just:
val _ by UnitReturning
// is this possible?
by UnitReturining // directly or some other workaround?
r
You can give it whatever name you want and we will suppress the warning of not being used but _ is a Kotlin reserved token
You would expect _ to be used many times and that would be a name collision and would require changes to the lang spec