breandan
02/21/2019, 3:03 PMAndreas Sinz
02/21/2019, 3:10 PMval t = foo()
<- whats the type of t?breandan
02/21/2019, 3:55 PMT
could be provided by a DSL closure of some kind. Or, alternately, it could be a slightly different syntax. The call site currently looks like this foo(some, parameters, t0, t1)
. I would like to separate them somehow foo(some, parameters)(t0, t1)
, but foo(t0, t1)(some, parameters)
or foo(some, parameters) c (t1, t2)
would also work