pub type ForKernelType<'a, const N: usize> = SerialForKernelType<'a, N>;Expand description
parallel_for kernel type. Depends on enabled feature(s).
This type alias is configured according to enabled feature in order to adjust the signatures of kernels to match the requirements of the underlying dispatch routines.
§Possible Values
rayonfeature enabled:Box<dyn Fn(KernelArgs<N>) + Send + Sync + 'a>threadsfeature enabled:Box<dyn Fn(KernelArgs<N>) + Send + 'a>- no feature enabled: fall back to
SerialForKernelType
Current version: no feature
Aliased Type§
struct ForKernelType<'a, const N: usize>(/* private fields */);