Uses of Class
de.grogra.xl.util.BooleanList
Packages that use BooleanList
-
Uses of BooleanList in de.grogra.rgg
Methods in de.grogra.rgg that return BooleanListModifier and TypeMethodDescriptionstatic BooleanList
Library.operator$shl
(BooleanList list, boolean value) This operator method addsvalue
as last element tolist
.Methods in de.grogra.rgg with parameters of type BooleanListModifier and TypeMethodDescriptionstatic boolean
Library.operator$index
(BooleanList list, int index) This operator method is an alias forlist.get(index)
.static BooleanList
Library.operator$shl
(BooleanList list, boolean value) This operator method addsvalue
as last element tolist
. -
Uses of BooleanList in de.grogra.xl.util
Methods in de.grogra.xl.util that return BooleanListModifier and TypeMethodDescriptionBooleanList.addAll
(boolean[] v, int begin, int length) Appendslength
components ofv
to this list, starting at indexbegin
.BooleanList.addAll
(BooleanList v) Appends all elements ofv
to this list.final BooleanList
BooleanList.push
(boolean o) Pusheso
on top of this list, i.e., as last element.final BooleanList
BooleanList.push
(boolean o1, boolean o2) Pusheso1
ando2
on top of this list, i.e., as last elements.final BooleanList
BooleanList.push
(boolean o1, boolean o2, boolean o3) Pusheso1 ... o3
on top of this list, i.e., as last elements.Methods in de.grogra.xl.util with parameters of type BooleanListModifier and TypeMethodDescriptionBooleanList.addAll
(BooleanList v) Appends all elements ofv
to this list.