node

package
v1.13.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 12, 2024 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LinkKNode

type LinkKNode[K comparable, T any] struct {
	Prev, Next *LinkKNode[K, T]
	Key        K
	Value      T
}

type LinkNode

type LinkNode[T any] struct {
	Prev, Next *LinkNode[T]
	Value      T
}

type LinkOrdKNode

type LinkOrdKNode[K comparable, T any] struct {
	Prev, Next *LinkOrdKNode[K, T]
	Key        K
	Value      T
}

type ListKNode

type ListKNode[K comparable, T any] struct {
	Next  *ListKNode[K, T]
	Key   K
	Value T
}

type ListNode

type ListNode[T any] struct {
	Next  *ListNode[T]
	Value T
}

type ListOrdKNode

type ListOrdKNode[K constraints.Ordered, T any] struct {
	Next  *LinkKNode[K, T]
	Key   K
	Value T
}

type Node

type Node[T any] struct {
	Value T
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL