Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tuple2クラスとPairscalaに違いはありますか?
Tuple2
Pair
彼らはまったく同じことをしているように私には思えます。
はい。両方とも同じです
type Pair[+A, +B] = Tuple2[A, B]
https://github.com/scala/scala/blob/v2.9.2/src/library/scala/Predef.scala#L1 227行目