Uses of Enum
io.qt.concurrent.QtConcurrent.ReduceOption
Packages that use QtConcurrent.ReduceOption
-
Uses of QtConcurrent.ReduceOption in io.qt.concurrent
Methods in io.qt.concurrent that return QtConcurrent.ReduceOptionModifier and TypeMethodDescriptionfinal QtConcurrent.ReduceOption []
QtConcurrent.ReduceOptions.flags()
Returns an array of flag objects represented by this ReduceOptions.static QtConcurrent.ReduceOption
QtConcurrent.ReduceOption.resolve
(int value) Returns the corresponding enum entry for the given value.static QtConcurrent.ReduceOption
Returns the enum constant of this type with the specified name.static QtConcurrent.ReduceOption[]
QtConcurrent.ReduceOption.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.qt.concurrent with parameters of type QtConcurrent.ReduceOptionModifier and TypeMethodDescriptionstatic <U,
T> U QtConcurrent.blockingFilteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static <U,
V, T> U QtConcurrent.blockingMappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption ... options) QtConcurrent.ReduceOption.cleared
(QtConcurrent.ReduceOption e) Excludes other enum entry from a flag of this entry.QtConcurrent.ReduceOption.combined
(QtConcurrent.ReduceOption e) Combines this entry with other enum entry.QtConcurrent.ReduceOptions.combined
(QtConcurrent.ReduceOption e) Combines this flags with enum entry.static <U,
T> QFuture <U> QtConcurrent.filteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static QtConcurrent.ReduceOptions
QtConcurrent.ReduceOption.flags
(QtConcurrent.ReduceOption ... values) Creates a newQtConcurrent.ReduceOptions
from the entries.static <U,
V, T> QFuture <U> QtConcurrent.mappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption ... options) QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e) Sets the flage
QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e, boolean on) Sets or clears the flagflag
static <U,
T> QtConcurrent.ThreadEngineStarter <U> QtConcurrent.startFilteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static <U,
V, T> QtConcurrent.ThreadEngineStarter <U> QtConcurrent.startMappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption... options) Constructors in io.qt.concurrent with parameters of type QtConcurrent.ReduceOptionModifierConstructorDescriptionReduceOptions
(QtConcurrent.ReduceOption ... args) Creates a new ReduceOptions where the flags inargs
are set.