A singly linked list
[Symbol.iterator](): IterableIterator<T>
clear(): void
Clears the list
filter(predicate: Predicate<T>): SinglyLinkedList<T>
Create new list from filtered values
Finds a first value that satisfies condition predicate
A node with value that might be stored in the list by index
map<U>(action: Action<T, U>): SinglyLinkedList<U>
Create new list from mapped values
from<U>(collection: ArrayLike<U> | Iterable<U>): SinglyLinkedList<U>
Creates new singly linked list from array like, iterable object