Alexey Anufriev
02/25/2020, 10:34 PMto
inside TuplesKt.class
there is also to
method
and in practice when I test the DSL my method is not resolved but the one from stdlib
how ot overcome this?dam5s
02/25/2020, 11:19 PMto
from the standard library, then I'm afraid you'll have to find another name for it.Alexey Anufriev
02/26/2020, 12:26 AMto
using imports and aliases, I can import to
as toKt
and then my to
will be resolvedKroppeb
02/26/2020, 1:48 AMto
was a very poorly choice to construct a Pair
. Makes it very difficult to use it in any DSL. On top of that, Pair
doesn't really convey a conditionality like to
does unless you are using it in the creation of maps.lucasqueiroz
02/26/2020, 3:42 AM