Boost QVM

operator+=(v,v)

#include <boost/qvm/v.hpp>

namespace boost
{
    namespace qvm
    {
        //Only enabled if:
        //  is_v<A>::value && is_v<B>::value &&
        //  v_traits<A>::dim==v_traits<B>::dim
        template <class A,class B>
        A & operator+=( A & a, B const & b );
    }
}

Effects:

Adds the elements of b to the corresponding elements of a.

Returns:

a.


See also: boost/qvm/v.hpp