UNPKG

@sridhar-mani/dsa-js

Version:

A full-fledged data structure library with linked list and double linked list implementation

8 lines 307 B
export default class DoubleLLNode<T> { value: T; prev: DoubleLLNode<T> | null; next: DoubleLLNode<T> | null; constructor(value: T, next?: DoubleLLNode<T> | null, prev?: DoubleLLNode<T> | null); toString(callbackFunc: (value: T) => string): string; } //# sourceMappingURL=dllNode.d.ts.map