Hello~ ``` infix fun <A, B, C> Pair<A, B&...
# announcements
h
Hello~
Copy code
infix fun <A, B, C> Pair<A, B>.to(that:C) = Triple(this.first, this.second, that)
3
r
But
a to b to c
already returns a valid value. I'd recommend using a different function name.
3
j
h
!! thanks
@jw Have you ever seen other attempts like A to B and C?