Guest User

Untitled

a guest
Apr 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1.     oset& operator+=(oset& other)
  2.     {
  3.  
  4.       while (begin() != end())
  5.       {
  6.    
  7.     cout << *begin() << "\n";
  8.     result.append(*begin());
  9.     begin()++;
  10.     print(result);
  11.    
  12.       }
  13.       *this = other.append(*begin());
  14.       return *this;
  15.    
  16.     }
Add Comment
Please, Sign In to add comment