Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

concat

import { concat } from "https://raw.githubusercontent.com/surma/observables-with-streams/28c55be6d855780c677fd1f4ba975f4d3144891d/src/index.ts";

Creates an output Observable which sequentially emits all values from given Observable and then moves on to the next.

function concat<T>(...os: Array<Observable<T>>): Observable<T>;
§
concat<T>(...os: Array<Observable<T>>): Observable<T>
[src]

§Type Parameters

§Parameters

§
...os: Array<Observable<T>> optional
[src]

Observables to concatenate.

§Return Type

§

Observable that emits items from all observables.