Cecha TraversableLike[+A, +Repr]
pozwala utworzyć kolekcję, w której niektóre funkcje zwrócą Repr
, podczas gdy inne będą nadal zwracać parametr typu That
w funkcji. Czy istnieje sposób zdefiniowania CustomCollection[A]
, gdzie funkcje takie jak map
, ++
i inne będą domyślnie jako Repr
, jeśli nie zostały w inny sposób określone?Tworzenie niestandardowej kolekcji scala, w której mapa domyślnie zwraca kolekcję niestandardową?
Oto fragment kodu, który mam nadzieję, że opisuje to, co lubię:
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
}
Chciałbym ostatnią linię być CustomCollection(2, 3, 4)
.
Zalogowałem się tylko do +1 OM-nom-nom za to, że tylko trzech minut tył postu. Wydaje się, że nie ma "Terminowej edycji!" przycisk z logo kciuka w górę. –