Member functions in C++ can be cv-qualified, which allows the member function to be invoked on an object with corresponding cv-qualifiers.
Member functions can also be ref-qualified to distinguish between being invoked on an lvalue or rvalue object.
Providing a full set of qualified methods can introduce a lot of duplication; check C++23 "deducing this" for a fix.
Compiler Explorer link: https://compiler-explorer.com/z/Mf3zWW3fd