type container/list.Element
31 uses
container/list (current package)
list.go#L15: type Element struct {
list.go#L21: next, prev *Element
list.go#L31: func (e *Element) Next() *Element {
list.go#L39: func (e *Element) Prev() *Element {
list.go#L49: root Element // sentinel list element, only &root, root.prev, and root.next are used
list.go#L69: func (l *List) Front() *Element {
list.go#L77: func (l *List) Back() *Element {
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#L104: return l.insert(&Element{Value: v}, at)
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) {
crypto/tls
common.go#L1391: m map[string]*list.Element
common.go#L1411: m: make(map[string]*list.Element),
net/http
transport.go#L2871: m map[*persistConn]*list.Element
transport.go#L2878: cl.m = make(map[*persistConn]*list.Element)