* \brief Forces inplace assignment. * The only usecase is matrix.inplace() = expression * where the content's of matrix are overwritten inplace, even if the data is shared with * some other matrix instance. * Using the returned object in another context as directly as the left side of an assignment is * undefined behaviour. * The assignment will fail if t
| 1134 | * \return an expression to force inplace assignment |
| 1135 | */ |
| 1136 | internal::MatrixInplaceAssignment<Type> inplace() |
| 1137 | { |
| 1138 | return internal::MatrixInplaceAssignment<Type>(this); |
| 1139 | } |
| 1140 | |
| 1141 | private: |
| 1142 |