std::experimental::simd_mask

From cppreference.com
< cpp‎ | experimental‎ | simd
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
 
 
Defined in header <experimental/simd>
template< class T, class Abi = simd_abi::compatible<T> >
class simd_mask;

The class template simd_mask is a data-parallel type with the element type bool. The width of a given simd_mask instantiation is a constant expression, determined by the template parameters. Specifically, simd_mask<T, Abi>::size() is always simd<T, Abi>::size().

Template parameters

T - the element type simd_mask applies on
Abi - the ABI type simd_mask applies on

Helper alias templates

Template Definition
template <class T, int N> using fixed_size_simd_mask simd_mask<T, simd_abi::fixed_size<N>>
template <class T> using native_simd_mask simd_mask<T, simd_abi::native>

Member types

Member type Definition
value_type bool
reference implementation-defined
simd_type simd<T, Abi>
abi_type Abi

Member functions

constructs a simd_mask object
(public member function)
loads from address
(public member function)
stores to address
(public member function)
accesses specified element
(public member function)
negates each element
(public member function)
[static]
returns the number of elements
(public static member function)

Non-member functions

element-wise logic operators
(function)
element-wise bitwise operators
(function)
element-wise compound operators
(function)
element-wise relation operators
(function)

Example