Skip to content

Typedef map_indices_t

typedef map_indices_t meta

using map_indices_t = typename map_indices_impl<size, Fn...>::type

Alias for the csizes_t produced by map_indices_impl<size, Fn...> .

Template parameters
size length of the resulting index list.
Fn... unary size_t -> size_t callables, applied right-to-left.
// Compose two permutes: br_permute is applied first, then split_permute, then
 // interleave_permute (leftmost = outermost).
 using Indices = map_indices_t<2 * R * N,
                               interleave_permute<in_split_width, U>,
                               split_permute<split_format ? N : 1, U>,
                               br_permute<R, N, bitrev>>;

Fully qualified name: kfr::map_indices_t

Declared at meta.hpp:2317

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.