> const auto myString = std::move_as<std::string>(c); This seems more verbose and hard to reason about than the existing: > const auto myString = std::string(std::move(c));