Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array interface {
	Add(int, interface{})
	AddFirst(interface{})
	AddLast(interface{})
	Remove(int) interface{}
	RemoveFirst() interface{}
	RemoveLast() interface{}
	Find(interface{}) int
	FindAll(interface{}) []int
	Contains(interface{}) bool
	Get(int) interface{}
	Set(int, interface{})
	GetCapacity() int // 获得数组容量
	GetSize() int     // 获得元素个数
	IsEmpty() bool
	RemoveElement(interface{}) bool
}
     Click to show internal directories. 
   Click to hide internal directories.