@jasmith79/sequable
Version:
Library functions for working with generators
10 lines (9 loc) • 315 B
text/typescript
import { Sequable } from "./sequable.mjs";
/**
* Yields all of the items from sequence a then all of the items of sequence
* b.
*
* @param a The first sequence to combine.
* @param b The second sequence to combine.
*/
export declare function concat<T, U = T>(a: Sequable<T>, b: Sequable<U>): Iterable<T | U>;