ожидаемое поведение, да?
scala> (Option(1), Option(2)).tupled
res12: Option[(Int, Int)] = Some((1,2))
scala> (Right[String, Int](1), Right[String, Int](2)).tupled
<console>:18: error: value tupled is not a member of (scala.util.Right[String,Int], scala.util.Right[String,Int])
(Right[String, Int](1), Right[String, Int](2)).tupled
1.asRight[String] пробуй
Обсуждают сегодня