/** * Gets a wrapped instance of the iterator OR the async iterator from any iterable (including arrays) * so that we can easily pipe it into the operators. * * @example * ```typescript * pipe( * itr8FromIterable([1,2,3]), * map((x) => x + 100), * ) * ``` * * @category interface/standard */ declare function itr8FromIterable(it: Iterable | AsyncIterable): IterableIterator | AsyncIterableIterator; export { itr8FromIterable };