import { LinkedList } from "https://deno.land/x/sptaki@1.2.0/utils/collections/mod.ts";
Methods
Returns an iterable of index, value pairs for every entry in the list.
Removes the last element from the list and returns it's value. If the list is empty, undefined is returned and the list is not modified.
Finds and removes the first element from a list that has a value equal to the given value, returns it's value if it successfully removed it.
Removes the element from the list at the given index and returns it's value.
Removes the first element from the list and returns it's value. If the list is empty, undefined is returned and the list is not modified.