Operatore operator% (C++ AMP)
Calcola il modulo del primo argomento specificato in base al secondo argomento specificato.
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);
Parametri
_Rank
Classificazione degli argomenti in formato tupla._Lhs
Tupla da cui viene calcolato il modulo._Rhs
Tupla in base a cui calcolare il modulo.
Valore restituito
Il risultato del modulo del primo argomento specificato in base al secondo argomento specificato.
Requisiti
Intestazione: amp.h
Spazio dei nomi: Concurrency