デフォルトのパラメーターを持つ次のcaseクラスがあり、最初の2つのパラメーターを抽出できるようにunapplyメソッドを作成する方法を考えています。
以下のコードが明確であることを願っています。
case class Point(x: Double, y: Double, _key: Option[String] = None) {
def key: String = _key.getOrElse("")
}
object Point {
def unapply(p: Point) = (p.x, p.y)
}
// pSeq is Seq[Point]
pSeq.map { case Point(x,y) => x + y } // This causes a compiler error:
// wrong number of arguments for <none>:
// (x: Double, y: Double, _key: Option[String])