container/list.List.insertValue (method)

7 uses

	container/list (current package)
		list.go#L103: func (l *List) insertValue(v interface{}, at *Element) *Element {
		list.go#L149: 	return l.insertValue(v, &l.root)
		list.go#L155: 	return l.insertValue(v, l.root.prev)
		list.go#L166: 	return l.insertValue(v, mark.prev)
		list.go#L177: 	return l.insertValue(v, mark)
		list.go#L227: 		l.insertValue(e.Value, l.root.prev)
		list.go#L236: 		l.insertValue(e.Value, &l.root)