Uses of Interface
org.eclipse.collections.api.block.function.primitive.CharToObjectFunction
-
Packages that use CharToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.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.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of CharToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharToObjectFunction Modifier and Type Method Description <V> RichIterable<V>CharIterable. collect(CharToObjectFunction<? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends Collection<V>>
RCharIterable. collect(CharToObjectFunction<? extends V> function, R target)Same asCharIterable.collect(CharToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyCharIterable. collect(CharToObjectFunction<? extends V> function)default <V,R extends Collection<V>>
RCharIterable. flatCollect(CharToObjectFunction<? extends Iterable<V>> function, R target)flatCollectis a special case ofCharIterable.collect(CharToObjectFunction).<V> LazyIterable<V>LazyCharIterable. flatCollect(CharToObjectFunction<? extends Iterable<V>> function)default <T> MutableCharListCharIterable. toSortedListBy(CharToObjectFunction<T> function)Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableCharListCharIterable. toSortedListBy(CharToObjectFunction<T> function, Comparator<? super T> comparator)Converts the collection to a MutableCharList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of CharToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> Bag<V>CharBag. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBag. collect(CharToObjectFunction<? extends V> function)<V> MutableBag<V>MutableCharBag. collect(CharToObjectFunction<? extends V> function) -
Uses of CharToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableCharCollection. collect(CharToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableCharCollection. collect(CharToObjectFunction<? extends V> function) -
Uses of CharToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ListIterable<V>CharList. collect(CharToObjectFunction<? extends V> function)<V> ImmutableList<V>ImmutableCharList. collect(CharToObjectFunction<? extends V> function)<V> MutableList<V>MutableCharList. collect(CharToObjectFunction<? extends V> function)default <T> MutableCharListMutableCharList. sortThisBy(CharToObjectFunction<T> function)Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableCharListMutableCharList. sortThisBy(CharToObjectFunction<T> function, Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of CharToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> Bag<V>CharValuesMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortCharMap. collect(CharToObjectFunction<? extends V> function)<V> MutableBag<V>MutableCharValuesMap. collect(CharToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableObjectCharMap. collect(CharToObjectFunction<? extends V> function)VMutableCharObjectMap. getIfAbsentPutWithKey(char key, CharToObjectFunction<? extends V> function)Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of CharToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>OrderedCharIterable. collect(CharToObjectFunction<? extends V> function)<V> ReversibleIterable<V>ReversibleCharIterable. collect(CharToObjectFunction<? extends V> function) -
Uses of CharToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> SetIterable<V>CharSet. collect(CharToObjectFunction<? extends V> function)<V> ImmutableSet<V>ImmutableCharSet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>MutableCharSet. collect(CharToObjectFunction<? extends V> function) -
Uses of CharToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> StackIterable<V>CharStack. collect(CharToObjectFunction<? extends V> function)<V> ImmutableStack<V>ImmutableCharStack. collect(CharToObjectFunction<? extends V> function)<V> MutableStack<V>MutableCharStack. collect(CharToObjectFunction<? extends V> function)
-