node

package
v1.10.9 Latest Latest
Warning

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

Go to latest
Published: Jun 7, 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 added in v1.10.5

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

type LinkNode added in v1.10.5

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

type LinkOrdKNode added in v1.10.5

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

type ListKNode added in v1.10.5

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

type ListNode added in v1.10.5

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

type ListOrdKNode added in v1.10.5

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