type container/list.List
30 uses
container/list (current package)
list.go#L24: list *List
list.go#L48: type List struct {
list.go#L54: func (l *List) Init() *List {
list.go#L62: func New() *List { return new(List).Init() }
list.go#L66: func (l *List) Len() int { return l.len }
list.go#L69: func (l *List) Front() *Element {
list.go#L77: func (l *List) Back() *Element {
list.go#L85: func (l *List) lazyInit() {
list.go#L92: func (l *List) insert(e, at *Element) *Element {
list.go#L103: func (l *List) insertValue(v any, at *Element) *Element {
list.go#L108: func (l *List) remove(e *Element) {
list.go#L118: func (l *List) move(e, at *Element) {
list.go#L134: func (l *List) Remove(e *Element) any {
list.go#L144: func (l *List) PushFront(v any) *Element {
list.go#L150: func (l *List) PushBack(v any) *Element {
list.go#L158: func (l *List) InsertBefore(v any, mark *Element) *Element {
list.go#L169: func (l *List) InsertAfter(v any, mark *Element) *Element {
list.go#L180: func (l *List) MoveToFront(e *Element) {
list.go#L191: func (l *List) MoveToBack(e *Element) {
list.go#L202: func (l *List) MoveBefore(e, mark *Element) {
list.go#L212: func (l *List) MoveAfter(e, mark *Element) {
list.go#L221: func (l *List) PushBackList(other *List) {
list.go#L230: func (l *List) PushFrontList(other *List) {
crypto/tls
common.go#L1444: q *list.List
net/http
transport.go#L2906: ll *list.List // list.Element.Value type is of *persistConn
vendor/golang.org/x/text/unicode/bidi
bracket.go#L112: openers *list.List // list of positions for opening brackets
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |