blog.bouzuya.net

2020-10-08 Kotlin の to は Pair をつくる infix fun

Kotlin の toPair をつくる infix fun だと気づいた。 2020-09-09 に infix fun があることを知った。そして今日になって to が予約語ではないことを知った。いまごろになって。

public infix fun <A, B> A.to(that: B): Pair<A, B> = Pair(this, that)

PureScript には (/\) があったっけ。 Tuple のコンストラクタを中置にしただけの。


今日は私用でバタバタしていた。