it("returns the elements of the first sequence not in the second one", () => {
        expect(from([1, 2]).except([2, 3, 4]).toArray()).toEqual([1]);
    });