Quick question: is the following in the stdlib, or...
# announcements
o
Quick question: is the following in the stdlib, or should I just define it myself?
inline fun <T, R> Pair<T, T>.map(f: (T) -> R) = Pair(f(first), f(second))