Typedef navtk::IfTensorsMaxDim

Typedef Documentation

template<std::size_t Dim, typename ...T>
using navtk::IfTensorsMaxDim = IfAllConditions<TENSORS_ARE_LESS_THAN_DIM<Dim + 1, T...>, !TENSORS_ARE_LESS_THAN_DIM<Dim, T...>>

IfTensorsMaxDim can be used in a template definition to invalidate the template.

To be valid, all types must have Dim or less number of dimensions. Both must be Tensor types (or scalars or initializer lists).