package
0.0.0-20240605145135-70feac92938f
Repository: https://github.com/getstream/quic-go.git
Documentation: pkg.go.dev

# README

Usage

This is the Go standard library implementation of a linked list (https://golang.org/src/container/list/list.go), with the following modifications:

  • it uses Go generics
  • it allows passing in a sync.Pool (via the NewWithPool constructor) to reduce allocations of Element structs

# Functions

New returns an initialized list.
No description provided by the author
NewWithPool returns an initialized list, using a sync.Pool for list elements.

# Structs

Element is an element of a linked list.
List represents a doubly linked list.