simdpp::any_vec<B,V>

From libsimdpp-docs
template< unsigned B, class V >
class any_vec;

A categorization type that represents any vector.

All libsimdpp vector types derive from this type.

Template parameters[edit]

B - the size of the vector in bytes
V - the actual type of the vector

Member types[edit]

Member type Definition
type V

Member constants[edit]

Member constant Value
length_bytes B

Member functions[edit]

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.