Create an empty iterator.
A new iterator which yields nothing.
import { empty } from '@lumino/algorithm';let stream = empty<number>();Array.from(stream); // [] Copy
import { empty } from '@lumino/algorithm';let stream = empty<number>();Array.from(stream); // []
Create an empty iterator.