type container/list.Element

47 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 interface{}, at *Element) *Element {
		list.go#L104: 	return l.insert(&Element{Value: v}, at)
		list.go#L108: func (l *List) remove(e *Element) *Element {
		list.go#L119: func (l *List) move(e, at *Element) *Element {
		list.go#L137: func (l *List) Remove(e *Element) interface{} {
		list.go#L147: func (l *List) PushFront(v interface{}) *Element {
		list.go#L153: func (l *List) PushBack(v interface{}) *Element {
		list.go#L161: func (l *List) InsertBefore(v interface{}, mark *Element) *Element {
		list.go#L172: func (l *List) InsertAfter(v interface{}, mark *Element) *Element {
		list.go#L183: func (l *List) MoveToFront(e *Element) {
		list.go#L194: func (l *List) MoveToBack(e *Element) {
		list.go#L205: func (l *List) MoveBefore(e, mark *Element) {
		list.go#L215: func (l *List) MoveAfter(e, mark *Element) {

	crypto/tls
		common.go#L1344: 	m        map[string]*list.Element
		common.go#L1364: 		m:        make(map[string]*list.Element),

	github.com/go-git/go-git/v5/plumbing/cache
		buffer_lru.go#L15: 	cache      map[int64]*list.Element
		buffer_lru.go#L44: 		c.cache = make(map[int64]*list.Element, 1000)
		object_lru.go#L17: 	cache      map[interface{}]*list.Element
		object_lru.go#L41: 		c.cache = make(map[interface{}]*list.Element, 1000)

	github.com/go-git/go-git/v5/plumbing/object
		commit_walker.go#L190: 	currCommit *list.Element
		commit_walker.go#L198: 	commitsLookup := make(map[plumbing.Hash]*list.Element)
		commit_walker.go#L242: 	commitsLookup map[plumbing.Hash]*list.Element) error {
		commit_walker.go#L258: 		parent     *list.Element

	github.com/golang/groupcache/lru
		lru.go#L33: 	cache map[interface{}]*list.Element
		lru.go#L51: 		cache:      make(map[interface{}]*list.Element),
		lru.go#L58: 		c.cache = make(map[interface{}]*list.Element)
		lru.go#L106: func (c *Cache) removeElement(e *list.Element) {

	github.com/jackc/pgconn/stmtcache
		lru.go#L20: 	m            map[string]*list.Element
		lru.go#L37: 		m:            make(map[string]*list.Element),

	net/http
		transport.go#L2861: 	m  map[*persistConn]*list.Element
		transport.go#L2868: 		cl.m = make(map[*persistConn]*list.Element)