std::as_const
| Defined in header <utility>
|
||
| template <class T> constexpr std::add_const_t<T>& as_const(T& t) noexcept; |
(1) | (since C++17) |
| template <class T> void as_const(const T&&) = delete; |
(2) | (since C++17) |
t[edit] Possible implementation
template <class T> constexpr std::add_const_t<T>& as_const(T& t) noexcept { return t; } |
[edit] Example
#include <string> #include <cassert> #include <utility> #include <type_traits> int main() { std::string mutableString = "Hello World!"; auto&& constRef = std::as_const(mutableString); // mutableString.clear(); // OK // constRef.clear(); // error: 'constRef' is 'const' qualified, // but 'clear' is not marked const assert( &constRef == &mutableString ); assert( &std::as_const( mutableString ) == &mutableString ); using ExprType = std::remove_reference_t<decltype(std::as_const(mutableString))>; static_assert(std::is_same_v<std::remove_const_t<ExprType>, std::string>, "ExprType should be some kind of string." ); static_assert(!std::is_same_v<ExprType, std::string>, "ExprType shouldn't be a mutable string." ); }
[edit] See also
| (C++11) |
checks if a type is const-qualified (class template) |
| (C++11)(C++11)(C++11) |
adds const or/and volatile specifiers to the given type (class template) |
| (C++11)(C++11)(C++11) |
removes const or/and volatile specifiers from the given type (class template) |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
