Stream

scas.util.Stream
See theStream companion trait
object Stream

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Stream.type

Members list

Type members

Classlikes

final class Cons[+A](hd: A, tl: Future[Stream[A]]) extends Stream[A]

Attributes

Supertypes
trait Stream[A]
class Object
trait Matchable
class Any
object Nil extends Stream[Nothing]

Attributes

Supertypes
trait Stream[Nothing]
class Object
trait Matchable
class Any
Self type
Nil.type
object sequential

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
sequential.type

Value members

Concrete methods

def apply[A](s: A*): Stream[A]
def range[T](start: T, end: T, step: T)(using num: Integral[T]): Stream[T]
def range[T](start: T, end: T)(using num: Integral[T]): Stream[T]

Extensions

Extensions

extension [A](x: A)
def #:(xs1: Future[Stream[A]]): Stream[A]