package
0.26.0
Repository: https://github.com/xiaotianfork/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), modified such that genny (https://github.com/cheekybits/genny) can be used to generate a typed linked list.

To generate, run

genny -pkg $PACKAGE -in linkedlist.go -out $OUTFILE gen Item=$TYPE

# Functions

NewItemList returns an initialized list.

# Structs

ItemElement is an element of a linked list.
ItemList is a linked list of Items.

# Type aliases

Item is a generic type.