-
This operator method adds value
as last element to
list
.
static boolean
This operator method is an alias for list.get(index)
.
This operator method adds value
as last element to
list
.
-
BooleanList.addAll(boolean[] v,
int begin,
int length)
Appends length
components of v
to this list,
starting at index begin
.
Appends all elements of v
to this list.
BooleanList.push(boolean o)
Pushes o
on top of this list, i.e., as last element.
BooleanList.push(boolean o1,
boolean o2)
Pushes o1
and o2
on top of this list,
i.e., as last elements.
BooleanList.push(boolean o1,
boolean o2,
boolean o3)
Pushes o1 ... o3
on top of this list,
i.e., as last elements.
Appends all elements of v
to this list.