Class: Node <T>

Type parameters

T

Hierarchy

  • Node

Constructors

constructor

+ new Node(key: string, value: T, next: Node‹T›, prev: Node‹T›): Node

Defined in cache/lru.ts:3

Parameters:

Name Type
key string
value T
next Node‹T›
prev Node‹T›

Returns: Node

Properties

key

key: string

Defined in cache/lru.ts:5


next

next: Node‹T›

Defined in cache/lru.ts:7


prev

prev: Node‹T›

Defined in cache/lru.ts:8


value

value: T

Defined in cache/lru.ts:6