命名空间
变体
操作

std::experimental::where

来自 cppreference.com
< cpp‎ | experimental‎ | simd
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
定义在头文件 <experimental/simd>
template< class T, class Abi >

where_expression<simd_mask<T, Abi>, simd<T, Abi>>
    where( const typename simd<T, Abi>::mask_type& mask,

           simd<T, Abi>& value ) noexcept;
(1) (并行 TS v2)
template< class T, class Abi >

const_where_expression<simd_mask<T, Abi>, const simd<T, Abi>>
    where( const typename simd<T, Abi>::mask_type& mask,

           const simd<T, Abi>& value ) noexcept;
(2) (并行 TS v2)
template< class T, class Abi >

where_expression<simd_mask<T, Abi>, simd_mask<T, Abi>>
    where( const type_identity_t<simd_mask<T, Abi>>& mask,

           simd_mask<T, Abi>& value ) noexcept;
(3) (并行 TS v2)
template< class T, class Abi >

const_where_expression<simd_mask<T, Abi>, const simd_mask<T, Abi>>
    where( const type_identity_t<simd_mask<T, Abi>>& mask,

           const simd_mask<T, Abi>& value ) noexcept;
(4) (并行 TS v2)
template< class T >

where_expression<bool, T>

    where( /*见下文*/ mask, T& value ) noexcept;
(5) (并行 TS v2)
template< class T >

const_where_expression<bool, const T>

    where( /*见下文*/ mask, const T& value ) noexcept;
(6) (并行 TS v2)

构造一个新的 const_where_expressionwhere_expression

1-6) 使用给定的掩码和值参数构造一个 where_expression

内容

[编辑] 参数

1-4)
mask - the simd_mask object
value - 对 mask 应用于的 simd 对象的引用
5,6)
mask - 类型为 bool 的掩码
value - 对 mask 应用于的标量的引用

[编辑] 返回值

构造的 const_where_expressionwhere_expression

[编辑] 注意

5,6) 使用实现定义的掩码类型,以便禁用从其他类型到 bool 的隐式转换。

[编辑] 示例