◆ moveTo()Move the container. This method is used to take ownership on the data without copying it. Example usage: VecRaster<float> raster(...);
raster.moveTo(data);
// Values have been moved to data without copy.
// raster.container() is in an unspecified state now.
|