How to use the ix/asynciterable.range function in ix

To help you get started, we’ve selected a few ix examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ReactiveX / IxJS / spec / asynciterable-operators / concatall-spec.ts View on Github external
test('AsyncIterable#concat concatAll order of effects', async () => {
  let i = 0;
  const xss = range(0, 3).pipe(
    map(x => range(0, x + 1)),
    tap({ next: async () => ++i })
  );
  const res = xss.pipe(
    concatAll(),
    map(x => i + ' - ' + x)
  );

  expect(
    await sequenceEqual(res, of('1 - 0', '2 - 0', '2 - 1', '3 - 0', '3 - 1', '3 - 2'))
  ).toBeTruthy();
});
github ReactiveX / IxJS / spec / asynciterable / catch-spec.ts View on Github external
test('AsyncIterable#catch with no errors', async () => {
  const res = catchError(range(0, 5), range(5, 5));
  expect(await sequenceEqual(res, range(0, 5))).toBeTruthy();
});
github ReactiveX / IxJS / spec / asynciterable / catch-spec.ts View on Github external
test('AsyncIterable#catch with no errors', async () => {
  const res = catchError(range(0, 5), range(5, 5));
  expect(await sequenceEqual(res, range(0, 5))).toBeTruthy();
});