Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ahh/src/iter/mod.ts>I.last

Idiomatic type-safety structures for TypeScript.
Go to Latest
method I.last
import { I } from "https://deno.land/x/ahh@v0.10.0/src/iter/mod.ts";

Consumes an Iterator and returns the last item.

Examples

import { I } from "./mod.ts";

const iter = I.iter([1, 2, 3]);

console.log(I.last(iter)); // 3
console.log(iter.next()); // undefined