A stream is a list of occurences over time. Each occurence happens at a discrete point in time and has an associated value. Semantically it is a list type Stream<A> = [Time, A].
type Stream<A> = [Time, A]
Generated using TypeDoc
A stream is a list of occurences over time. Each occurence happens at a discrete point in time and has an associated value. Semantically it is a list
type Stream<A> = [Time, A]
.