Uses of Interface
org.anchoranalysis.core.functional.checked.CheckedIntFunction
Packages that use CheckedIntFunction
Package
Description
Utilities and interfaces for applying functional-programming.
A feature-list (custom list type for features) and associated providers.
The fundamental data class that is an
ObjectMask
and related structures.-
Uses of CheckedIntFunction in org.anchoranalysis.core.functional
Methods in org.anchoranalysis.core.functional with parameters of type CheckedIntFunctionModifier and TypeMethodDescriptionCheckedStream.mapIntStream
(IntStream stream, Class<? extends Exception> throwableClass, CheckedIntFunction<T, E> mapFunc) Creates a new feature-list by mapping integers (from a range) each to an optional feature accepting a checked-exceptionCheckedStream.mapToObj
(IntStream stream, Class<? extends Exception> throwableClass, CheckedIntFunction<T, E> mapFunction) Performs aIntStream.mapToObj(java.util.function.IntFunction<? extends U>)
but accepts a function that can throw a checked-exception. -
Uses of CheckedIntFunction in org.anchoranalysis.feature.bean.list
Methods in org.anchoranalysis.feature.bean.list with parameters of type CheckedIntFunctionModifier and TypeMethodDescriptionstatic <T extends FeatureInput,
E extends Exception>
FeatureList<T> FeatureListFactory.mapFromRangeOptional
(int startInclusive, int endExclusive, Class<? extends Exception> throwableClass, CheckedIntFunction<Optional<Feature<T>>, E> mapFunc) Creates a new feature-list by mapping integers (from a range) each to an optional feature -
Uses of CheckedIntFunction in org.anchoranalysis.image.voxel.object
Methods in org.anchoranalysis.image.voxel.object with parameters of type CheckedIntFunctionModifier and TypeMethodDescriptionstatic <E extends Exception>
ObjectCollectionObjectCollectionFactory.flatMapFromRange
(int startInclusive, int endExclusive, Class<? extends Exception> throwableClass, CheckedIntFunction<ObjectCollection, E> mapFunction) Creates a new collection by flat-mapping integers (from a range) each to aObjectCollection
.static <E extends Exception>
ObjectCollectionObjectCollectionFactory.mapFromRange
(int startInclusive, int endExclusive, Class<? extends Exception> throwableClass, CheckedIntFunction<ObjectMask, E> mapFunction) Creates a new collection by mapping integers (from a range) each to aObjectMask
.