it("returns all elements when all of them match", () => {
        const original = [2, 4, 6],
            actual = from(original).where(constantTrue).toArray();
        expect(actual).toEqual(original);
    });