operator=
MISSING
(1) | |
(2) |
-
Copy assignment.Copies the image descriptor of the original image. After the copy, both image object will point to the same underlying memory.
Parameters:-
const image<kDimensions, AllocatorT> &
rhs
-
-
Move Assignment. Moves the image descriptor of the original image. After the move, rhs will be invalid.
Parameters:-
image<kDimensions, AllocatorT> &&
rhs
-