If you have an infix fun `infix fun Any.foo(bar: A...
# getting-started
r
If you have an infix fun
infix fun Any.foo(bar: Any)
and call it like
a foo b
, inside the fun you refer to
a
as
this
and
b
as
bar
.