UNPKG

@jasmith79/sequable

Version:

Library functions for working with generators

10 lines (9 loc) 314 B
import { Sequable } from "./sequable.js"; /** * 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>;