BooleanIterable, BooleanList, MutableBooleanCollection, OrderedBooleanIterable, PrimitiveIterable, ReversibleBooleanIterableBooleanArrayList, SynchronizedBooleanList, UnmodifiableBooleanListpublic interface MutableBooleanList extends MutableBooleanCollection, BooleanList
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | addAllAtIndex(int index,
             boolean... source) | |
| boolean | addAllAtIndex(int index,
             BooleanIterable source) | |
| void | addAtIndex(int index,
          boolean element) | |
| MutableBooleanList | asSynchronized() | |
| MutableBooleanList | asUnmodifiable() | |
| <V> MutableList<V> | collect(BooleanToObjectFunction<? extends V> function) | Returns a new collection with the results of applying the specified function on each element of the source
 collection. | 
| default <V> MutableList<V> | collectWithIndex(BooleanIntToObjectFunction<? extends V> function) | Returns a new MutableList using results obtained by applying the specified function to each element
 and its corresponding index. | 
| MutableBooleanList | distinct() | |
| default MutableBooleanList | newEmpty() | Creates a new empty mutable version of the same List type. | 
| MutableBooleanList | reject(BooleanPredicate predicate) | Returns a new BooleanIterable with all of the elements in the BooleanIterable that
 return false for the specified predicate. | 
| boolean | removeAtIndex(int index) | |
| MutableBooleanList | reverseThis() | |
| MutableBooleanList | select(BooleanPredicate predicate) | Returns a new BooleanIterable with all of the elements in the BooleanIterable that
 return true for the specified predicate. | 
| boolean | set(int index,
   boolean element) | |
| MutableBooleanList | subList(int fromIndex,
       int toIndex) | |
| default MutableBooleanList | tap(BooleanProcedure procedure) | |
| ImmutableBooleanList | toImmutable() | Returns an immutable copy of this list. | 
| MutableBooleanList | toReversed() | |
| MutableBooleanList | with(boolean element) | |
| MutableBooleanList | withAll(BooleanIterable elements) | |
| MutableBooleanList | without(boolean element) | |
| MutableBooleanList | withoutAll(BooleanIterable elements) | |
| default <T> MutableList<BooleanObjectPair<T>> | zip(java.lang.Iterable<T> list) | Returns a  MutableListformed from thisMutableBooleanListand aListIterableby
 combining corresponding elements in pairs. | 
| default MutableList<BooleanBooleanPair> | zipBoolean(BooleanIterable iterable) | Returns a  MutableListformed from thisMutableBooleanListand anotherBooleanListby
 combining corresponding elements in pairs. | 
allSatisfy, anySatisfy, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, noneSatisfy, reject, select, toArray, toBag, toList, toSetequals, get, hashCode, lastIndexOfadd, addAll, addAll, booleanIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAllcollectWithIndex, forEachWithIndex, getFirst, indexOfappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringasReversed, getLast, injectIntoWithIndexvoid addAtIndex(int index,
                boolean element)
boolean addAllAtIndex(int index,
                      boolean... source)
boolean addAllAtIndex(int index,
                      BooleanIterable source)
boolean removeAtIndex(int index)
boolean set(int index,
            boolean element)
MutableBooleanList select(BooleanPredicate predicate)
BooleanIterableselect in interface BooleanIterableselect in interface BooleanListselect in interface MutableBooleanCollectionselect in interface OrderedBooleanIterableselect in interface ReversibleBooleanIterableMutableBooleanList reject(BooleanPredicate predicate)
BooleanIterablereject in interface BooleanIterablereject in interface BooleanListreject in interface MutableBooleanCollectionreject in interface OrderedBooleanIterablereject in interface ReversibleBooleanIterableMutableBooleanList with(boolean element)
with in interface MutableBooleanCollectionMutableBooleanList without(boolean element)
without in interface MutableBooleanCollectionMutableBooleanList withAll(BooleanIterable elements)
withAll in interface MutableBooleanCollectionMutableBooleanList withoutAll(BooleanIterable elements)
withoutAll in interface MutableBooleanCollectiondefault MutableBooleanList tap(BooleanProcedure procedure)
tap in interface BooleanIterabletap in interface BooleanListtap in interface MutableBooleanCollection<V> MutableList<V> collect(BooleanToObjectFunction<? extends V> function)
BooleanIterablecollect in interface BooleanIterablecollect in interface BooleanListcollect in interface MutableBooleanCollectioncollect in interface OrderedBooleanIterablecollect in interface ReversibleBooleanIterabledefault <V> MutableList<V> collectWithIndex(BooleanIntToObjectFunction<? extends V> function)
collectWithIndex in interface BooleanListcollectWithIndex in interface OrderedBooleanIterablecollectWithIndex in interface ReversibleBooleanIterableMutableBooleanList reverseThis()
MutableBooleanList toReversed()
toReversed in interface BooleanListtoReversed in interface ReversibleBooleanIterableMutableBooleanList distinct()
distinct in interface BooleanListdistinct in interface ReversibleBooleanIterableMutableBooleanList asUnmodifiable()
asUnmodifiable in interface MutableBooleanCollectionMutableBooleanList asSynchronized()
asSynchronized in interface MutableBooleanCollectionImmutableBooleanList toImmutable()
toImmutable in interface BooleanListtoImmutable in interface MutableBooleanCollectionMutableBooleanList subList(int fromIndex, int toIndex)
subList in interface BooleanListList.subList(int fromIndex, int toIndex)default MutableList<BooleanBooleanPair> zipBoolean(BooleanIterable iterable)
MutableList formed from this MutableBooleanList and another BooleanList by
 combining corresponding elements in pairs. If one of the two BooleanLists is longer than the other, its
 remaining elements are ignored.zipBoolean in interface BooleanListdefault <T> MutableList<BooleanObjectPair<T>> zip(java.lang.Iterable<T> list)
MutableList formed from this MutableBooleanList and a ListIterable by
 combining corresponding elements in pairs. If one of the two Lists is longer than the other, its
 remaining elements are ignored.zip in interface BooleanListdefault MutableBooleanList newEmpty()
newEmpty in interface MutableBooleanCollectionCopyright © 2004–2018. All rights reserved.