次の方法で共有


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
    タプルの引数のランク。

  • _Lhs
    除算されるタプル。

  • _Rhs
    除算するタプル。

戻り値

指定された引数のコンポーネントごとの商。

必要条件

ヘッダー: amp.h

名前空間: Concurrency

参照

関連項目

Concurrency 名前空間 (C++ AMP)