Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::movable

      From cppreference.com
      <cpp‎ |concepts
       
       
      Concepts library
       
      Defined in header<concepts>
      template<class T>

      concept movable=
         std::is_object_v<T>&&
         std::move_constructible<T>&&
         std::assignable_from<T&, T>&&

         std::swappable<T>;
      (since C++20)

      The conceptmovable<T> specifies thatT is an object type that can be moved (that is, it can be move constructed, move assigned, and lvalues of typeT can be swapped).

      [edit]References

      • C++23 standard (ISO/IEC 14882:2024):
      • 18.6 Object concepts [concepts.object]
      • C++20 standard (ISO/IEC 14882:2020):
      • 18.6 Object concepts [concepts.object]

      [edit]See also

      (C++20)
      specifies that an object of a type can be copied, moved, and swapped
      (concept)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/concepts/movable&oldid=177896"

      [8]ページ先頭

      ©2009-2025 Movatter.jp