Uses of Interface
org.eclipse.collections.api.tuple.primitive.CharCharPair
-
Packages that use CharCharPair Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.factory.primitive This package contains static utilities for creating immutable primitive collection factories.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.tuple.primitive -
-
Uses of CharCharPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description default ListIterable<CharCharPair>
CharList. zipChar(CharIterable iterable)
Returns aListIterable
formed from thisCharList
and anotherCharList
by combining corresponding elements in pairs.default ImmutableList<CharCharPair>
ImmutableCharList. zipChar(CharIterable iterable)
Returns anImmutableList
formed from thisImmutableCharList
and anotherCharList
by combining corresponding elements in pairs.default MutableList<CharCharPair>
MutableCharList. zipChar(CharIterable iterable)
Returns aMutableList
formed from thisMutableCharList
and anotherCharList
by combining corresponding elements in pairs. -
Uses of CharCharPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description RichIterable<CharCharPair>
CharCharMap. keyValuesView()
Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type CharCharPair Modifier and Type Method Description default void
MutableCharCharMap. putPair(CharCharPair keyValuePair)
This method allows MutableCharCharMap the ability to add an element in the form of CharCharPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type CharCharPair Modifier and Type Method Description default MutableCharCharMap
MutableCharCharMap. withAllKeyValues(java.lang.Iterable<CharCharPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map. -
Uses of CharCharPair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description LazyIterable<CharCharPair>
CharSet. cartesianProduct(CharSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthis
and b is a member ofset
. -
Uses of CharCharPair in org.eclipse.collections.impl.factory.primitive
Methods in org.eclipse.collections.impl.factory.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description static <A,B>
LazyIterable<CharCharPair>CharSets. cartesianProduct(CharSet set1, CharSet set2)
-
Uses of CharCharPair in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description ImmutableList<CharCharPair>
ImmutableCharArrayList. zipChar(CharIterable iterable)
ImmutableList<CharCharPair>
ImmutableCharEmptyList. zipChar(CharIterable iterable)
ImmutableList<CharCharPair>
ImmutableCharSingletonList. zipChar(CharIterable iterable)
-
Uses of CharCharPair in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description MutableList<CharCharPair>
CharArrayList. zipChar(CharIterable iterable)
MutableList<CharCharPair>
SynchronizedCharList. zipChar(CharIterable iterable)
MutableList<CharCharPair>
UnmodifiableCharList. zipChar(CharIterable iterable)
-
Uses of CharCharPair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description RichIterable<CharCharPair>
ImmutableCharCharEmptyMap. keyValuesView()
RichIterable<CharCharPair>
ImmutableCharCharHashMap. keyValuesView()
RichIterable<CharCharPair>
ImmutableCharCharSingletonMap. keyValuesView()
-
Uses of CharCharPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return CharCharPair Modifier and Type Method Description CharCharPair
CharCharHashMap.KeyValuesView.InternalKeyValuesIterator. next()
Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description LazyIterable<CharCharPair>
AbstractMutableCharKeySet. cartesianProduct(CharSet set)
java.util.Iterator<CharCharPair>
CharCharHashMap.KeyValuesView. iterator()
RichIterable<CharCharPair>
CharCharHashMap. keyValuesView()
RichIterable<CharCharPair>
SynchronizedCharCharMap. keyValuesView()
RichIterable<CharCharPair>
UnmodifiableCharCharMap. keyValuesView()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharCharPair Modifier and Type Method Description void
SynchronizedCharCharMap. putPair(CharCharPair keyValuePair)
void
UnmodifiableCharCharMap. putPair(CharCharPair keyValuePair)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type CharCharPair Modifier and Type Method Description void
CharCharHashMap.KeyValuesView. each(Procedure<? super CharCharPair> procedure)
<P> void
CharCharHashMap.KeyValuesView. forEachWith(Procedure2<? super CharCharPair,? super P> procedure, P parameter)
void
CharCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharCharPair> objectIntProcedure)
-
Uses of CharCharPair in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description LazyIterable<CharCharPair>
ImmutableCharEmptySet. cartesianProduct(CharSet set)
LazyIterable<CharCharPair>
ImmutableCharSingletonSet. cartesianProduct(CharSet set)
-
Uses of CharCharPair in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description LazyIterable<CharCharPair>
SynchronizedCharSet. cartesianProduct(CharSet set)
LazyIterable<CharCharPair>
UnmodifiableCharSet. cartesianProduct(CharSet set)
-
Uses of CharCharPair in org.eclipse.collections.impl.set.primitive
Methods in org.eclipse.collections.impl.set.primitive that return types with arguments of type CharCharPair Modifier and Type Method Description LazyIterable<CharCharPair>
AbstractCharSet. cartesianProduct(CharSet set)
-
Uses of CharCharPair in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return types with arguments of type CharCharPair Modifier and Type Method Description ImmutableList<CharCharPair>
CharAdapter. zipChar(CharIterable iterable)
-
Uses of CharCharPair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement CharCharPair Modifier and Type Class Description class
CharCharPairImpl
This file was automatically generated from template file primitivePrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return CharCharPair Modifier and Type Method Description static CharCharPair
PrimitiveTuples. pair(char one, char two)
Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type CharCharPair Modifier and Type Method Description int
CharCharPairImpl. compareTo(CharCharPair that)
-