structs/Bag
-
class Bag
-
-
static method new~withCapacity(len: Int) → Bag
-
method init~withCapacity(len: Int)
-
static method new → Bag
-
method init
-
method add(element: T)
-
method add~withIndex(index: Int, element: T)
-
method clear
-
method get(index: Int, T: Class) → T
-
method indexOf(element: T) → Int
-
method lastIndexOf(element: T) → Int
-
method removeAt(index: Int, T: Class) → T
-
method remove(element: T) → Bool
-
method set(index: Int, element: T)
-
method size → Int
-
data → ArrayList<T>