simdpp::any_vec8<N,V>

From libsimdpp-docs
template< unsigned N, class V >
class any_vec8 : public any_vec<N*1, V>;

A categorization type that represents any vector with 8-bit elements.

any_vec8, uint8, int8 and mask_int8 derive from this type.

Template parameters[edit]

N - the number of elements in the vector
V - the actual type of the vector

Member constants[edit]

Member constant Value
size_tag SIMDPP_TAG_SIZE8

Inherited from simdpp::any_vec<B,V>

Member types

Member type Definition
type V

Member constants

Member constant Value
length_bytes B

Member functions

wrapped
returns the wrapped type
(public member function)

simdpp::any_vec::wrapped

V& wrapped();
const V& wrapped() const;

Returns the wrapped type. Effectively the same as static_cast<V&>(*this) or static_cast<const V&>(*this) respectively.