Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::swap(std::basic_stringbuf)

      From cppreference.com
      <cpp‎ |io‎ |basic stringbuf
       
       
       
       
      Defined in header<sstream>
      template<class CharT,class Traits,class Alloc>

      void swap(std::basic_stringbuf<CharT,Traits,Alloc>& lhs,

                 std::basic_stringbuf<CharT,Traits,Alloc>& rhs);
      (since C++11)
      (until C++20)
      template<class CharT,class Traits,class Alloc>

      void swap(std::basic_stringbuf<CharT,Traits,Alloc>& lhs,
                 std::basic_stringbuf<CharT,Traits,Alloc>& rhs)

         noexcept(noexcept(lhs.swap(rhs)));
      (since C++20)

      Overloads thestd::swap algorithm forstd::basic_stringbuf. Exchanges the state oflhs with that ofrhs. Effectively callslhs.swap(rhs).

      Contents

      [edit]Parameters

      lhs, rhs -std::basic_stringbuf objects whose states to swap

      [edit]Return value

      (none)

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      (C++11)
      swaps twobasic_stringbuf objects
      (public member function)[edit]
      swaps the values of two objects
      (function template)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/basic_stringbuf/swap2&oldid=156842"

      [8]ページ先頭

      ©2009-2025 Movatter.jp