it("returns undefined if `index` is equal to the length of the sequence and it is called without a default value", () => {
            expect(from(yieldFrom([1, 2, 3])).elementAtOrDefault(3)).toBeUndefined();
        });