Uses of Interface
org.eclipse.collections.api.list.primitive.MutableBooleanList
-
Packages that use MutableBooleanList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API. -
-
Uses of MutableBooleanList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableBooleanList Modifier and Type Method Description MutableBooleanListBooleanIterable. toList()Converts the BooleanIterable to a new MutableBooleanList. -
Uses of MutableBooleanList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of MutableBooleanList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableBooleanListFactory. empty()MutableBooleanListMutableBooleanListFactory. of()Same asMutableBooleanListFactory.empty().MutableBooleanListMutableBooleanListFactory. of(boolean... items)MutableBooleanListMutableBooleanListFactory. ofAll(Iterable<Boolean> iterable)MutableBooleanListMutableBooleanListFactory. ofAll(BooleanIterable items)MutableBooleanListMutableBooleanListFactory. with()Same asMutableBooleanListFactory.empty().MutableBooleanListMutableBooleanListFactory. with(boolean... items)Creates a new list using the passeditemsargument as the backing store.MutableBooleanListMutableBooleanListFactory. withAll(Iterable<Boolean> iterable)MutableBooleanListMutableBooleanListFactory. withAll(BooleanIterable items)default MutableBooleanListMutableBooleanListFactory. withInitialCapacity(int capacity)Same asMutableBooleanListFactory.empty().default MutableBooleanListMutableBooleanListFactory. wrapCopy(boolean... array)Creates a new list by first copying the array passed in. -
Uses of MutableBooleanList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableBooleanList Modifier and Type Method Description default MutableBooleanListMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of MutableBooleanList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableBooleanList. asSynchronized()MutableBooleanListMutableBooleanList. asUnmodifiable()MutableBooleanListMutableBooleanList. distinct()default MutableBooleanListMutableBooleanList. newEmpty()Creates a new empty mutable version of the same List type.MutableBooleanListMutableBooleanList. reject(BooleanPredicate predicate)default MutableBooleanListMutableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanListMutableBooleanList. reverseThis()MutableBooleanListMutableBooleanList. select(BooleanPredicate predicate)default MutableBooleanListMutableBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.MutableBooleanListMutableBooleanList. subList(int fromIndex, int toIndex)default MutableBooleanListMutableBooleanList. tap(BooleanProcedure procedure)MutableBooleanListMutableBooleanList. toReversed()MutableBooleanListMutableBooleanList. with(boolean element)MutableBooleanListMutableBooleanList. withAll(BooleanIterable elements)MutableBooleanListMutableBooleanList. without(boolean element)MutableBooleanListMutableBooleanList. withoutAll(BooleanIterable elements) -
Uses of MutableBooleanList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of MutableBooleanList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of MutableBooleanList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableBooleanList Modifier and Type Method Description MutableBooleanListMutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
-