Uses of Interface
org.eclipse.collections.api.CharIterable
Packages that use CharIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of CharIterable in org.eclipse.collections.api
Subinterfaces of CharIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return CharIterableModifier and TypeMethodDescriptionRichIterable.collectChar(CharFunction<? super T> charFunction) Returns a new primitivechariterable with the results of applying the specified function on each element of the source collection.CharIterable.reject(CharPredicate predicate) Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.CharIterable.select(CharPredicate predicate) Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.default CharIterableCharIterable.tap(CharProcedure procedure) Methods in org.eclipse.collections.api that return types with arguments of type CharIterableModifier and TypeMethodDescriptiondefault RichIterable<CharIterable>CharIterable.chunk(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type CharIterableModifier and TypeMethodDescriptiondefault booleanCharIterable.containsAll(CharIterable source) Returns true if all of the values specified in the source CharIterable are contained in the CharIterable, and false if they are not.default booleanCharIterable.containsAny(CharIterable source) Returns true if any of the values specified in the source CharIterable are contained in the CharIterable, and false if they are not.default booleanCharIterable.containsNone(CharIterable source) Returns true if none of the values specified in the source CharIterable are contained in the CharIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type CharIterableModifier and TypeMethodDescriptiondefault <R extends MutableCharCollection>
RRichIterable.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) Same as flatCollect, only the results are collected into the target collection. -
Uses of CharIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveBag.stg.interfaceThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharBag.newWithAll(CharIterable elements) ImmutableCharBag.newWithoutAll(CharIterable elements) MutableCharBag.withAll(CharIterable elements) MutableCharBag.withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionbooleanMutableCharCollection.addAll(CharIterable source) ImmutableCharCollection.newWithAll(CharIterable elements) ImmutableCharCollection.newWithoutAll(CharIterable elements) booleanMutableCharCollection.removeAll(CharIterable source) booleanMutableCharCollection.retainAll(CharIterable elements) MutableCharCollection.withAll(CharIterable elements) MutableCharCollection.withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharBagFactory.ofAll(CharIterable items) MutableCharBagFactory.ofAll(CharIterable items) ImmutableCharBagFactory.withAll(CharIterable items) MutableCharBagFactory.withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharListFactory.ofAll(CharIterable items) MutableCharListFactory.ofAll(CharIterable items) ImmutableCharListFactory.withAll(CharIterable items) MutableCharListFactory.withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharSetFactory.ofAll(CharIterable items) MutableCharSetFactory.ofAll(CharIterable items) ImmutableCharSetFactory.withAll(CharIterable items) MutableCharSetFactory.withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharStackFactory.ofAll(CharIterable items) MutableCharStackFactory.ofAll(CharIterable items) ImmutableCharStackFactory.ofAllReversed(CharIterable items) MutableCharStackFactory.ofAllReversed(CharIterable items) ImmutableCharStackFactory.withAll(CharIterable items) MutableCharStackFactory.withAll(CharIterable items) ImmutableCharStackFactory.withAllReversed(CharIterable items) MutableCharStackFactory.withAllReversed(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveList.stg.interfaceThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionbooleanMutableCharList.addAllAtIndex(int index, CharIterable source) ImmutableCharList.newWithAll(CharIterable elements) ImmutableCharList.newWithoutAll(CharIterable elements) MutableCharList.withAll(CharIterable elements) MutableCharList.withoutAll(CharIterable elements) default ListIterable<CharCharPair>CharList.zipChar(CharIterable iterable) Returns aListIterableformed from thisCharListand anotherCharListby combining corresponding elements in pairs.default ImmutableList<CharCharPair>ImmutableCharList.zipChar(CharIterable iterable) Returns anImmutableListformed from thisImmutableCharListand anotherCharListby combining corresponding elements in pairs.default MutableList<CharCharPair>MutableCharList.zipChar(CharIterable iterable) Returns aMutableListformed from thisMutableCharListand anotherCharListby combining corresponding elements in pairs. -
Uses of CharIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitiveValuesMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file objectPrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharBooleanMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharByteMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharCharMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharDoubleMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharFloatMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharIntMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharLongMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharObjectMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharShortMap.newWithoutAllKeys(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableCharBooleanMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharByteMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharCharMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharDoubleMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharFloatMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharIntMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharLongMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharObjectMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharShortMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of CharIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.ordered.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of CharIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveSet.stg.interfaceThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type CharIterableModifier and TypeMethodDescriptionImmutableCharSet.newWithAll(CharIterable elements) ImmutableCharSet.newWithoutAll(CharIterable elements) MutableCharSet.withAll(CharIterable elements) MutableCharSet.withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveStack.stg.interfaceThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceThis file was automatically generated from template file mutablePrimitiveStack.stg.