Movatterモバイル変換


[0]ホーム

URL:


Scala 3
3.7.4
LearnInstallPlaygroundFind A LibraryCommunityBlog
Scala 3
LearnInstallPlaygroundFind A LibraryCommunityBlog
DocsAPI
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL
Scala 3/scala/scala.jdk/StreamConverters

StreamConverters

scala.jdk.StreamConverters

This object provides extension methods to createJava Streams that operate on Scala collections (sequentially or in parallel). For more information on Java streams, consult the documentation (https://docs.oracle.com/javase/8/docs/api/java/util/stream/package-summary.html).

When writing Java code, use the explicit conversion methods defined injavaapi.StreamConverters instead.

The methodsasJavaSeqStream andasJavaParStream convert a collection to a Java Stream:

scala> import scala.jdk.StreamConverters._scala> val s = (1 to 10).toList.asJavaSeqStreams: java.util.stream.IntStream = java.util.stream.IntPipeline$Head@7b1e5e55scala> s.map(_ * 2).filter(_ > 5).toScala(List)res1: List[Int] = List(6, 8, 10, 12, 14, 16, 18, 20)

Note: using parallel streams in the Scala REPL causes deadlocks, seehttps://github.com/scala/bug/issues/9076. As a workaround, usescala -Yrepl-class-based.

scala> def isPrime(n: Int): Boolean = !(2 +: (3 to Math.sqrt(n).toInt by 2) exists (n % _ == 0))isPrime: (n: Int)Booleanscala> (10000 to 1000000).asJavaParStream.filter(isPrime).toScala(Vector)res6: scala.collection.immutable.Vector[Int] = Vector(10007, 10009, 10037, 10039, ...

A JavaStream provides operations on a sequence of elements. Streams are created fromSpliterators, which are similar to Iterators with the additional capability to partition off some of their elements. This partitioning, if supported by the Spliterator, is used for parallelizing Stream operations.

Scala collections have a methodstepper that returns ascala.collection.Stepper for the collection, which in turn can be converted to a Spliterator for creating a Java Stream.

TheasJavaSeqStream extension method is available on any Scala collection. TheasJavaParStream extension method can only be invoked on collections where the return type of thestepper method is marked with thescala.collection.Stepper.EfficientSplit marker trait. This trait is added to steppers that support partitioning, and therefore efficient parallel processing.

The following extension methods are available:

Collection Type

Extension Methods

IterableOnce

asJavaSeqStream

IndexedSeq, Arrays,BitSet,Accumulator,HashMap,HashSet,Range,TreeMap,TreeSet,Vector, Strings

asJavaParStream

Map

asJavaSeqKeyStream,asJavaSeqValueStream

HashMap,TreeMap

asJavaParKeyStream,asJavaParValueStream

Stepper

asJavaSeqStream

Stepper with EfficientSplit

asJavaParStream

Strings

asJavaSeqStream,asJavaParStream,asJavaSeqCharStream,asJavaParCharStream,asJavaSeqCodePointStream,asJavaParCodePointStream

Java streams

toScala,asJavaPrimitiveStream

TheasJavaPrimitiveStream method converts aStream[Int] to anIntStream. It is the dual of theboxed method defined on primitive streams (e.g.,IntStream.boxed is aStream[Integer]).

ThetoScala extension methods on Java streams collects the result of a stream pipeline into a Scala collection, for examplestream.toScala(List),stream.toScala(Vector). Note that transformation operations on streams are lazy (also called "intermediate"), terminal operations such asforEach,count ortoScala trigger the evaluation.

Collecting a parallel stream to a collection can be performed in parallel. This is beneficial if the target collection supports efficient merging of the segments that are built in parallel. To support this use case, the Scala standard library provides theAccumulator collection. This collection supports efficient parallel construction, and it has specialized subtypes forInt,Long andDouble so that primitive Java streams can be collected to a Scala collection without boxing the elements.

Attributes

Source
StreamConverters.scala
Graph
Supertypes
classObject
traitMatchable
classAny
Self type

Members list

Type members

Inherited classlikes

implicitclassAnyArrayHasSeqParStream[A <:AnyRef](a:Array[A])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassIntStreamHasToScala(stream:IntStream)

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassIterableHasSeqStream[A](cc:IterableOnce[A])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassIterableNonGenericHasParStream[A,C <:IterableOnce[_]](c:C)(implicitev:C<:<IterableOnce[A])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassLongStreamHasToScala(stream:LongStream)

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassMapHasParKeyValueStream[K,V,CC <:([X,Y] =>>MapOps[X,Y,Map,_])](cc:CC[K,V])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassMapHasSeqKeyValueStream[K,V,CC <:([X,Y] =>>MapOps[X,Y,Map,_])](cc:CC[K,V])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassStepperHasParStream[A](stepper:Stepper[A] &EfficientSplit)

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassStepperHasSeqStream[A](stepper:Stepper[A])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny
implicitclassStreamHasToScala[A](stream:Stream[A])

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
Supertypes
classObject
traitMatchable
classAny

Implicits

Inherited implicits

implicitdefMapHasParKeyValueStream[K,V,CC <:([X,Y] =>>MapOps[X,Y,Map,_])](cc:CC[K,V]):MapHasParKeyValueStream[K,V,CC]

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
implicitdefMapHasSeqKeyValueStream[K,V,CC <:([X,Y] =>>MapOps[X,Y,Map,_])](cc:CC[K,V]):MapHasSeqKeyValueStream[K,V,CC]

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
implicitdefStepperHasSeqStream[A](stepper:Stepper[A]):StepperHasSeqStream[A]

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
implicitdefStreamHasToScala[A](stream:Stream[A]):StreamHasToScala[A]

Attributes

Inherited from:
StreamExtensions
Source
StreamExtensions.scala
In this article
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL

[8]ページ先頭

©2009-2025 Movatter.jp