- scala.compat.java8 - package scala.compat.java8
-
- scala.compat.java8.wrappers - package scala.compat.java8.wrappers
-
- ScalaStreamSupport - Class in scala.compat.java8
-
This class contains static utility methods for creating Java Streams from Scala Collections, similar
to the methods in java.util.stream.StreamSupport for other Java types.
- ScalaStreamSupport() - Constructor for class scala.compat.java8.ScalaStreamSupport
-
- stream(IterableOnce<T>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses a Scala collection.
- stream(Map<K, V>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses the key-value pairs of a scala.collection.Map.
- streamAccumulated(IterableOnce<T>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses any Scala collection by accumulating its entries
into a buffer class (Accumulator).
- streamAccumulatedKeys(Map<K, ?>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses the keys of any Scala map by
accumulating those keys into a buffer class (Accumulator).
- streamAccumulatedValues(Map<?, V>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses the values of any Scala map by
accumulating those values into a buffer class (Accumulator).
- streamKeys(Map<K, ?>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses the keys of a scala.collection.Map.
- streamValues(Map<?, V>) - Static method in class scala.compat.java8.ScalaStreamSupport
-
Generates a Stream that traverses the values of a scala.collection.Map.