UNPKG

linked-list-lib

Version:

This package contain some possibilities of implementations of linked lists

23 lines (15 loc) 341 B
# Description Contain some possibilities of implementations of linked lists ## Installation ```shell npm i linked-list-lib ``` ## Use ```ts import { SinglyLinkedList } from 'linked-list-lib'; interface IData<T> { name: T; } const linkedList = new SinglyLinkedList<IData<string>>(); linkedList.insertInBegin({ name: 'A'}); ```