it("returns [1, 2] if given [1, 1, 2]", () => {
        expect(from([1, 1, 2]).distinct().toArray()).toEqual([1, 2]);
    });