MapHasSeqKeyValueStream (original) (raw)
scala.collection.convert.StreamExtensions.MapHasSeqKeyValueStream
implicit class MapHasSeqKeyValueStream[K, V, CC <: (MapOps)](cc: CC[K, V])
Attributes
Source
Graph
Supertypes
class Object
trait Matchable
class Any
Members list
Value members
Concrete methods
def asJavaSeqKeyStream[S <: BaseStream[_, _], St <: Stepper[_]](implicit s: StreamShape[K, S, St], st: StepperShape[K, St]): S
Create a sequential Java Stream for the keys of this map.
Create 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).
Attributes
Source
def asJavaSeqStream[S <: BaseStream[_, _], St <: Stepper[_]](implicit s: StreamShape[(K, V), S, St], st: StepperShape[(K, V), St]): S
Create a sequential Java Stream for the (key, value)
pairs of this map.
Create a sequential Java Stream for the (key, value)
pairs of this map.
Attributes
Source
def asJavaSeqValueStream[S <: BaseStream[_, _], St <: Stepper[_]](implicit s: StreamShape[V, S, St], st: StepperShape[V, St]): S
Create a sequential Java Stream for the values of this map.
Create a sequential Java Stream for the values of this map. If the values are primitives, a corresponding specialized Stream is returned (e.g., IntStream).
Attributes
Source