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 - St
-
the type of
Stepperused to traverse the map's keys, required to support efficient splitting
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) - St
-
the type of
Stepperused to traverse the map's key-value pairs, required to support efficient splitting
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 - St
-
the type of
Stepperused to traverse the map's values, required to support efficient splitting
Attributes
- Source
- StreamExtensions.scala