1.2.0
Deno port of x3/cion/x3-linkedlist
Repository
Current version released
4 years ago
Versions
This is a port for deno of x3cion/x3-linkedlist
Intro
This is a linked list implementation for Deno written in TypeScript.
How to use
const list = new LinkedList([1, 2, 3, 4]);
console.log('content:', list.join(' -> '));See docs/typedoc for further infos.