it("returns only the common elements", () => {
        expect(from([1, 2]).intersect([3, 2, 4]).toArray()).toEqual([2]);
    });