可选方法是在类泛型具有特定类型时可以应用的方法。 示例:
list.unzip //works only if this is collection of pairs
list.sum //works only if this collection of numbers
目前我想要实现回归方法,它具有与解压缩相同的约束(即收集2d点),但我不知道如何确保方法(implicit asPair: A => (A1, A2)
存在,以及定义此类转换的最佳位置
答案 0 :(得分:10)
以下是TraversableOnce.toMap
确保仅在对的集合上调用的内容。
def toMap[T, U](implicit ev: A <:< (T, U)): immutable.Map[T, U] = {
val b = immutable.Map.newBuilder[T, U]
for (x <- self)
b += x
b.result
}
但是如果你想在现有的集合类中添加一个类似的方法,你可以更容易:
class EnhancedIterable[T,U](x: Iterable[(T,U)]) { // CanBuildFrom omitted for brevity
def swapAll() = x.map(_.swap)
}
implicit def enhanceIterable[T,U](x: Iterable[(T,U)]) = new EnhancedIterable(x)
List((1,2), (3,4), (5,6)).swapAll // List((2,1), (4,3), (6,5))
List(1, 2, 3).swapAll // error: value swapAll is not a member of List[Int]