Documentation ¶ Index ¶ type List func NewList() *List func (q *List) Contain(v interface{}) bool func (q *List) ContainBy(v interface{}, f func(left interface{}, right interface{}) bool) bool func (q *List) Len() int func (q *List) Pop() interface{} func (q *List) Push(v interface{}) func (q *List) Range(f func(value interface{})) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type List ¶ type List struct { // contains filtered or unexported fields } func NewList ¶ func NewList() *List func (*List) Contain ¶ func (q *List) Contain(v interface{}) bool func (*List) ContainBy ¶ func (q *List) ContainBy(v interface{}, f func(left interface{}, right interface{}) bool) bool func (*List) Len ¶ func (q *List) Len() int func (*List) Pop ¶ func (q *List) Pop() interface{} func (*List) Push ¶ func (q *List) Push(v interface{}) func (*List) Range ¶ func (q *List) Range(f func(value interface{})) Source Files ¶ View all Source files synclist.go Click to show internal directories. Click to hide internal directories.