Stream

interface Stream<T>(source)

A stream is a sequence of elements that can be read one by one

Since

0.5.0

Parameters

T

The type of the elements in the stream

Inheritors

Functions

Link copied to clipboard
fun <T> Stream<out Stream<T>>.flatten(): FlatStream<T>
Link copied to clipboard
open fun forEach(action: (T) -> Unit)

For each element in the stream, call the given function

Link copied to clipboard
open fun forEachIndexed(action: (Int, T) -> Unit)

For each element in the stream, call the given function

Link copied to clipboard
abstract fun hasNext(): Boolean

Check if the stream has a next element

Link copied to clipboard
open fun <R> map(mapper: (T) -> R): Stream<R>

Map the stream to another stream

Link copied to clipboard
open fun <R> mapIndexed(mapper: (Int, T) -> R): Stream<R>

Map the stream to another stream

Link copied to clipboard
abstract fun read(): T

Read the next element from the stream