ix
Version:
The Interactive Extensions for JavaScript
19 lines (17 loc) • 846 B
text/typescript
import { IterableX } from '../iterablex.js';
import { concat } from '../concat.js';
import { whileDo } from '../whiledo.js';
import { MonoTypeOperatorFunction } from '../../interfaces.js';
/**
* Generates an async-iterable sequence by repeating a source sequence as long as the given loop postcondition holds.
*
* @template TSource The type of elements in the source sequence.
* @param {(() => boolean)} condition Loop condition.
* @returns {MonoTypeOperatorFunction<TSource>} An operator that generates an async-iterable by repeating a
* source sequence while the postcondition holds.
*/
export function doWhile<TSource>(condition: () => boolean): MonoTypeOperatorFunction<TSource> {
return function doWhileOperatorFunction(source: Iterable<TSource>): IterableX<TSource> {
return concat(source, whileDo(source, condition));
};
}