WithFilter
Specialize WithFilter for sorted collections
Attributes
- Source
- SortedSet.scala
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Attributes
- Source
- SortedSet.scala
Attributes
- Source
- SortedSet.scala
Further refines the filter for this filtered sorted collection.
Further refines the filter for this filtered sorted collection.
Value parameters
- q
-
the predicate used to test elements.
Attributes
- Returns
-
an object of class
WithFilter, which supportsmap,flatMap,foreach, andwithFilteroperations. All these operations apply to those elements of this sorted collection which also satisfy bothpandqpredicates. - Definition Classes
- Source
- SortedSet.scala
Inherited methods
Builds a new collection by applying a function to all elements of the filtered outer collection containing this WithFilter instance that satisfy
Builds a new collection by applying a function to all elements of the filtered outer collection containing this WithFilter instance that satisfy
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new collection resulting from applying the given collection-valued function
fto each element of the filtered outer collection and concatenating the results. - Inherited from:
- WithFilter
- Source
- Iterable.scala
Applies a function f to all elements of the filtered outer collection.
Applies a function f to all elements of the filtered outer collection.
Type parameters
- U
-
the type parameter describing the result of function
f. This result will always be ignored. TypicallyUisUnit, but this is not necessary.
Value parameters
- f
-
the function that is applied for its side-effect to every element. The result of function
fis discarded.
Attributes
- Inherited from:
- WithFilter
- Source
- Iterable.scala
Builds a new collection by applying a function to all elements of the filtered outer collection.
Builds a new collection by applying a function to all elements of the filtered outer collection.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new collection resulting from applying the given function
fto each element of the filtered outer collection and collecting the results. - Inherited from:
- WithFilter
- Source
- Iterable.scala