<@U5JLY4V45> no, it gets compiled into normal JVM ...
# announcements
d
@bdeg no, it gets compiled into normal JVM bytecode
👍 1
b
Thank you! So why not using it everytime? Since it's can make the code readable.
d
it depends on the context
b
Yes sure, thanks again
x
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)
.