MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / inplace

Function inplace

extensions/include/cuMat/src/Matrix.h:1136–1139  ·  view source on GitHub ↗

* \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

Source from the content-addressed store, hash-verified

1134 * \return an expression to force inplace assignment
1135 */
1136 internal::MatrixInplaceAssignment<Type> inplace()
1137 {
1138 return internal::MatrixInplaceAssignment<Type>(this);
1139 }
1140
1141private:
1142

Callers 1

Matrix.hFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected