共用方式為


operator/ 運算子 (C++ AMP)

計算指定之引數在分量方向上的商。

template <
   int _Rank,
   template <int> class _Tuple_type
>
_Tuple_type<_Rank> operator/(
   const _Tuple_type<_Rank>& _Lhs,
   typename _Tuple_type<_Rank>::value_type _Rhs
) restrict(amp,cpu);

template <
   int _Rank,
   template <int> class _Tuple_type
>
_Tuple_type<_Rank> operator/(
   typename _Tuple_type<_Rank>::value_type _Lhs,
   const _Tuple_type<_Rank>& _Rhs
) restrict(amp,cpu);

參數

  • _Rank
    Tuple 引數的陣序。

  • _Lhs
    要做為被除數的 Tuple。

  • _Rhs
    要做為除數的 Tuple。

傳回值

指定之引數在分量方向上的商。

需求

**標頭:**amp.h

**命名空間:**並行

請參閱

參考

Concurrency 命名空間 (C++ AMP)