Spectral::Transpose is gone?

In the latest release of CVB, the Transpose() function in Cube.hpp is onmitted.
This implies, in turn, that the following code does not compile anymore

const auto cube = Cvb::Cube::FromImages(imgVec, Cvb::Spectral::CubeEncoding::BandInterleavedByLine)->Transpose(Cvb::Spectral::CubeEncoding::BandInterleavedByPixel);

How do I perform a Transpose operation nowadays? Is it correct that the Convert() function is the correct alternative?

https://help.commonvisionblox.com/NextGen/15.0/cvbpp/de/d86/class_cvb_1_1_spectral_1_1_cube.html

It is now:

const auto cube = Cvb::Cube::FromImages(imgVec, Cvb::Spectral::CubeEncoding::BandInterleavedByLine)->Convert(Cvb::Spectral::CubeEncoding::BandInterleavedByPixel)

There was an internal c-api deprecation regarding the

See these docs. Please pay attention not to dive into the docs of unreleased versions.