.. highlight:: c .. _arr_comp_ops: Compound assignment operators (+=, -=, * =, /=) ------------------------------------------------- **Synopsis** :: template THIS_TYPE & operator += (const RHS & X); template THIS_TYPE & operator -= (const RHS & X); template THIS_TYPE & operator *= (const Scalar & S); template THIS_TYPE & operator /= (const Scalar & S); The containers and the view have compound operators. *NB*: These operators make no sense for const views, and result in a compile error.