it("returns the original sequence if `other` is empty", () => {
        expect(from([1, 2]).union([]).toArray()).toEqual([1, 2]);
    });