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 interface{}, at *Element) *Element {
		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) {
		list.go#L224: func (l *List) PushBackList(other *List) {
		list.go#L233: func (l *List) PushFrontList(other *List) {

	crypto/tls
		common.go#L1345: 	q        *list.List

	net/http
		transport.go#L2860: 	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