WithFilter

class WithFilter[K, +V, +IterableCC[_], +MapCC <: ([X, Y] =>> Map[X, Y]), +CC <: ([X, Y] =>> Map[X, Y] & SortedMapOps[X, Y, CC, _])](self: SortedMapOps[K, V, CC, _] & MapOps[K, V, MapCC, _] & IterableOps[(K, V), IterableCC, _], p: (K, V) => Boolean) extends WithFilter[K, V, IterableCC, MapCC]

Specializes MapWithFilter for sorted Map collections

Source
SortedMap.scala

Value members

Concrete methods

def flatMap[K2 : Ordering, V2](f: (K, V) => IterableOnce[(K2, V2)]): CC[K2, V2]
def map[K2 : Ordering, V2](f: (K, V) => (K2, V2)): CC[K2, V2]
override def withFilter(q: (K, V) => Boolean): WithFilter[K, V, IterableCC, MapCC, CC]
Definition Classes
Source
SortedMap.scala

Inherited methods

def flatMap[K2, V2](f: (K, V) => IterableOnce[(K2, V2)]): MapCC[K2, V2]
Inherited from
WithFilter
Source
Map.scala
def flatMap[B](f: (K, V) => IterableOnce[B]): IterableCC[B]
Inherited from
WithFilter
Source
Iterable.scala
def foreach[U](f: (K, V) => U): Unit
Inherited from
WithFilter
Source
Iterable.scala
def map[K2, V2](f: (K, V) => (K2, V2)): MapCC[K2, V2]
Inherited from
WithFilter
Source
Map.scala
def map[B](f: (K, V) => B): IterableCC[B]
Inherited from
WithFilter
Source
Iterable.scala