Documentation ¶
Index ¶
- type ArrayList
- func (list *ArrayList) Add(item interface{})
- func (list *ArrayList) AddAt(index int, item interface{})
- func (list *ArrayList) Clear()
- func (list *ArrayList) Get(index int) interface{}
- func (list *ArrayList) IndexOf(item interface{}) int
- func (list *ArrayList) IsEmpty() bool
- func (list *ArrayList) LastIndexOf(item interface{}) int
- func (list *ArrayList) Remove(index int)
- func (list *ArrayList) Set(index int, item interface{})
- func (list *ArrayList) Size() int
- func (list *ArrayList) String() string
- func (list *ArrayList) SubList(fromIndex, toIndex int) *ArrayList
- func (list *ArrayList) ToArray() []interface{}
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ArrayList ¶
type ArrayList struct {
// contains filtered or unexported fields
}
func NewArrayList ¶
func NewArrayList() *ArrayList
func (*ArrayList) LastIndexOf ¶
Click to show internal directories.
Click to hide internal directories.