EleFits
4.0.0
A modern C++ API on top of CFitsIO
|
◆ moveTo()
template<typename T >
Move the vector outside the column. This method is used to take ownership on the data without copying it. The column info is untouched. Example usage: VecColumn<float> column(...);
column.moveTo(data);
// Values have been moved to data without copy.
// column.vector() is empty now.
|