Matrix move constructor / move-assignment operator missing in doxygen docs
Describe the feature you would like to be implemented.
Matrix class has the move constructor and move-assignment operator implemented here:
https://gitlab.com/libeigen/eigen/-/blob/master/Eigen/src/Core/Matrix.h?ref_type=heads#L273
and this was added about a decade ago in 7c99b38b
However, it's not shown in the doxygen listing of the public API:
https://eigen.tuxfamily.org/dox/classEigen_1_1Matrix.html
Would such a feature be useful for other users? Why?
Yes, it can be confusing, for example in code reviews when someone is searching in the official documentation and doesn't see the method signatures with rvalue references.
Any hints on how to implement the requested feature?
No, I couldn't figure out why this is excluded (is there some global flag that leaves out APIs containing rvalue refs for example?)