この特性TraversableLike[+A, +Repr]
により、一部の関数がを返すコレクションを作成し、Repr
他の関数は関数の型パラメーターを返し続けることができますThat
。CustomCollection[A]
、、などの関数が、他の方法で推測されないかのようにデフォルトになる場所map
を定義++
するThat
方法はありますか?Repr
これが私が欲しいものをうまく説明するコードスニペットです:
case class CustomCollection[A](list: List[A]) extends TraversableLike[A, CustomCollection[A]] {
protected[this] def newBuilder = new CustomCollectionBuilder[A]
def foreach[U](f: (A) => U) {list foreach f}
def seq = list
}
class CustomCollectionBuilder[A] extends mutable.Builder[A, CustomCollection[A]] {
private val list = new mutable.ListBuffer[A]()
def += (elem: A): this.type = {
list += elem
this
}
def clear() {list.clear()}
def result(): CustomCollection[A] = CustomCollection(list.result())
}
object CustomCollection extends App {
val customCollection = CustomCollection(List(1, 2, 3))
println(customCollection filter {x => x == 1}) // CustomCollection(1)
println(customCollection map {x => x + 1}) // non-empty iterator
}
最後の行を。にしたいのですがCustomCollection(2, 3, 4)
。