MapHasParKeyValueStream
Attributes
- Source
- StreamExtensions.scala
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Creates a parallel Java Stream for the keys of this map. If the keys are primitive values, a corresponding specialized Stream is returned (e.g., `IntStream`).
Creates a parallel Java Stream for the keys of this map. If the keys are primitive values, a corresponding specialized Stream is returned (e.g., `IntStream`).
Type parameters
- S
-
the type of Java Stream to create, determined by the key type
K
Attributes
- Source
- StreamExtensions.scala
Creates a parallel Java Stream for the (key, value) pairs of this map.
Creates a parallel Java Stream for the (key, value) pairs of this map.
Type parameters
- S
-
the type of Java Stream to create, determined by the pair type
(K, V)
Attributes
- Source
- StreamExtensions.scala
Creates a parallel Java Stream for the values of this map. If the values are primitives, a corresponding specialized Stream is returned (e.g., `IntStream`).
Creates a parallel Java Stream for the values of this map. If the values are primitives, a corresponding specialized Stream is returned (e.g., `IntStream`).
Type parameters
- S
-
the type of Java Stream to create, determined by the value type
V
Attributes
- Source
- StreamExtensions.scala