https://kotlinlang.org logo
#announcements
Title
# announcements
d

dh44t

06/22/2017, 4:47 PM
@bdeg no, it gets compiled into normal JVM bytecode
👍 1
b

bdeg

06/22/2017, 4:48 PM
Thank you! So why not using it everytime? Since it's can make the code readable.
d

dh44t

06/22/2017, 4:49 PM
it depends on the context
b

bdeg

06/22/2017, 4:51 PM
Yes sure, thanks again
x

xenomachina

06/23/2017, 2:27 AM
Personally, I'm not a fan of infix. I find
foo.bar(baz)
far more readable than
foo bar baz
in almost all cases. Taken to the extreme, in
a b c d e f g h i j k
, is "e" a method or an argument? The answer is much more obvious in
a.b(c).d(e).f(g).h(i).j(k)
.
2 Views