Packages

implicit class StringHasSeqParStream extends AnyRef

Source
StreamExtensions.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringHasSeqParStream
  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. All

Instance Constructors

  1. new StringHasSeqParStream(s: String)

Value Members

  1. def asJavaParCharStream: IntStream

    A parallel stream on the characters of a string.

    A parallel stream on the characters of a string. See also asJavaParCodePointStream.

  2. def asJavaParCodePointStream: IntStream

    A parallel stream on the code points of a string.

    A parallel stream on the code points of a string. See also asJavaParCharStream.

  3. def asJavaParStream: IntStream

    A parallel stream on the characters of a string, same as asJavaParCharStream.

    A parallel stream on the characters of a string, same as asJavaParCharStream. See also asJavaParCodePointStream.

  4. def asJavaSeqCharStream: IntStream

    A sequential stream on the characters of a string.

    A sequential stream on the characters of a string. See also asJavaSeqCodePointStream.

  5. def asJavaSeqCodePointStream: IntStream

    A sequential stream on the code points of a string.

    A sequential stream on the code points of a string. See also asJavaSeqCharStream.

  6. def asJavaSeqStream: IntStream

    A sequential stream on the characters of a string, same as asJavaSeqCharStream.

    A sequential stream on the characters of a string, same as asJavaSeqCharStream. See also asJavaSeqCodePointStream.