Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/velo/src/utils/doubly_linked_list.ts>Node

A high-performance caching library for Deno. Supports LRU, LFU, ARC, and TinyLFU.
Latest
class Node
import { Node } from "https://deno.land/x/velo@1.0.0/src/utils/doubly_linked_list.ts";

Constructors

new
Node(key?: K, value?: V)

Properties

data: V | undefined
frequencyCount: number
key: K | undefined
next: Node<K, V> | undefined
prev: Node<K, V> | undefined