Skip to main content
Go to Latest
interface DoublyLinkedList
Re-export
import { type DoublyLinkedList } from "https://deno.land/x/masx200_leetcode_test@9.6.7/mod.ts";

Type Parameters

optional
T = any

Properties

optional
val: T
optional
next: DoublyLinkedList<T> | null
optional
prev: DoublyLinkedList<T> | null
function DoublyLinkedList
Re-export
import { DoublyLinkedList } from "https://deno.land/x/masx200_leetcode_test@9.6.7/mod.ts";

Type Parameters

optional
T = any

Parameters

optional
val: T
optional
next: DoublyLinkedList<T>
optional
prev: DoublyLinkedList<T>