Packages

implicit class MapHasSeqKeyValueStream[K, V, CC[X, Y] <: MapOps[X, Y, Map, _]] extends AnyRef

Source
StreamExtensions.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapHasSeqKeyValueStream
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MapHasSeqKeyValueStream(cc: CC[K, V])

Value Members

  1. 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).

  2. 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.

  3. 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).