MapHasSeqKeyValueStream
Attributes
- Source
- StreamExtensions.scala
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Creates a sequential 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 sequential 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
Value parameters
- s
-
implicit evidence connecting key type
Kto the appropriate Java Stream and Stepper types - st
-
implicit evidence selecting the appropriate
Steppershape for key typeK
Attributes
- Returns
-
a sequential Java Stream of type
Scontaining the keys of this map - Source
- StreamExtensions.scala
Creates a sequential Java Stream for the (key, value) pairs of this map.
Creates a sequential 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
Value parameters
- s
-
implicit evidence connecting pair type
(K, V)to the appropriate Java Stream and Stepper types - st
-
implicit evidence selecting the appropriate
Steppershape for pair type(K, V)
Attributes
- Returns
-
a sequential Java Stream of type
Scontaining the(key, value)pairs of this map - Source
- StreamExtensions.scala
Creates a sequential Java Stream for the values of this map. If the values are primitives, a corresponding specialized Stream is returned (e.g., `IntStream`).
Creates a sequential 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
Value parameters
- s
-
implicit evidence connecting value type
Vto the appropriate Java Stream and Stepper types - st
-
implicit evidence selecting the appropriate
Steppershape for value typeV
Attributes
- Returns
-
a sequential Java Stream of type
Scontaining the values of this map - Source
- StreamExtensions.scala