type container/list.List
37 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
github.com/go-git/go-git/v5/plumbing/cache
buffer_lru.go#L14: ll *list.List
object_lru.go#L16: ll *list.List
github.com/go-git/go-git/v5/plumbing/object
commit_walker.go#L241: commitsPath *list.List,
github.com/golang/groupcache/lru
lru.go#L32: ll *list.List
github.com/jackc/pgconn/stmtcache
lru.go#L21: l *list.List
golang.org/x/sync/semaphore
semaphore.go#L32: waiters list.List
golang.org/x/text/unicode/bidi
bracket.go#L112: openers *list.List // list of positions for opening brackets
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
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |