QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
MoveAware< T > Struct Template Reference

Public Member Functions

 MoveAware (T val)
 
 MoveAware (MoveAware const &)=delete
 
 MoveAware (MoveAware &&rhs)
 
MoveAwareoperator= (MoveAware const &)=delete
 
MoveAwareoperator= (MoveAware &&rhs)
 

Public Attributes

val
 
bool moved
 

Constructor & Destructor Documentation

◆ MoveAware() [1/3]

template<class T >
MoveAware< T >::MoveAware ( val)
inline
202: val(val), moved(false) {}
bool moved
Definition test_optional.cpp:201
T val
Definition test_optional.cpp:200

◆ MoveAware() [2/3]

template<class T >
MoveAware< T >::MoveAware ( MoveAware< T > const &  )
delete

◆ MoveAware() [3/3]

template<class T >
MoveAware< T >::MoveAware ( MoveAware< T > &&  rhs)
inline
204 : val(rhs.val), moved(rhs.moved) {
205 rhs.moved = true;
206 }

Member Function Documentation

◆ operator=() [1/2]

template<class T >
MoveAware & MoveAware< T >::operator= ( MoveAware< T > const &  )
delete

◆ operator=() [2/2]

template<class T >
MoveAware & MoveAware< T >::operator= ( MoveAware< T > &&  rhs)
inline
208 {
209 val = (rhs.val);
210 moved = (rhs.moved);
211 rhs.moved = true;
212 return *this;
213 }

Member Data Documentation

◆ val

template<class T >
T MoveAware< T >::val

◆ moved

template<class T >
bool MoveAware< T >::moved

The documentation for this struct was generated from the following file: