operator/ Operator (C++ AMP)

Computes the component-wise quotient of the specified arguments.

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);

Parameters

  • _Rank
    The rank of the tuple arguments.

  • _Lhs
    The tuple to be divided.

  • _Rhs
    The tuple to divide by.

Return Value

The component-wise quotient of the specified arguments.

Requirements

Header: amp.h

Namespace: Concurrency

See Also

Reference

Concurrency Namespace (C++ AMP)