infix functions are functions that can be called b...
# getting-started
m
infix functions are functions that can be called between the parameters, like @marstran mentioned…
infix fun Bar.baz(that: Bar) = this + that
which can then be called
val bar3 = bar1 baz bar2
(awful I know đŸ˜† )