Skip to main content
Module

x/rimbu/mod.ts>StreamSource

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace StreamSource
Re-export
import { StreamSource } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

Type Aliases

Any object that is a non-empty Stream, can produce a non-empty Stream, or is a non-empty array.

type alias StreamSource
Re-export
import { type StreamSource } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

Any object that is Iterable, a Stream, or can produce a Stream.

definition:
| undefined
| Iterable<T>
| Stream<T>