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

Public Member Functions

 Oracle ()
 
 Oracle (const OracleVal &v)
 
 Oracle (OracleVal &&v)
 
 Oracle (const Oracle &o)
 
 Oracle (Oracle &&o)
 
Oracleoperator= (const OracleVal &v)
 
Oracleoperator= (OracleVal &&v)
 
Oracleoperator= (const Oracle &o)
 
Oracleoperator= (Oracle &&o)
 

Public Attributes

State s
 
OracleVal val
 

Constructor & Destructor Documentation

◆ Oracle() [1/5]

Oracle::Oracle ( )
inline
State s
Definition test_optional.cpp:49
@ sDefaultConstructed
Definition test_optional.cpp:27

◆ Oracle() [2/5]

Oracle::Oracle ( const OracleVal v)
inline
OracleVal val
Definition test_optional.cpp:50
@ sValueCopyConstructed
Definition test_optional.cpp:28

◆ Oracle() [3/5]

Oracle::Oracle ( OracleVal &&  v)
inline
54: s(sValueMoveConstructed), val(std::move(v)) {v.s = sMovedFrom;}
State s
Definition test_optional.cpp:42
@ sValueMoveConstructed
Definition test_optional.cpp:29
@ sMovedFrom
Definition test_optional.cpp:36

◆ Oracle() [4/5]

Oracle::Oracle ( const Oracle o)
inline
55: s(sCopyConstructed), val(o.val) {}
@ sCopyConstructed
Definition test_optional.cpp:30

◆ Oracle() [5/5]

Oracle::Oracle ( Oracle &&  o)
inline
56: s(sMoveConstructed), val(std::move(o.val)) {o.s = sMovedFrom;}
@ sMoveConstructed
Definition test_optional.cpp:31

Member Function Documentation

◆ operator=() [1/4]

Oracle & Oracle::operator= ( const OracleVal v)
inline
58{ s = sValueCopyConstructed; val = v; return *this; }

◆ operator=() [2/4]

Oracle & Oracle::operator= ( OracleVal &&  v)
inline
59{ s = sValueMoveConstructed; val = std::move(v); v.s = sMovedFrom; return *this; }

◆ operator=() [3/4]

Oracle & Oracle::operator= ( const Oracle o)
inline
60{ s = sCopyConstructed; val = o.val; return *this; }

◆ operator=() [4/4]

Oracle & Oracle::operator= ( Oracle &&  o)
inline
61{ s = sMoveConstructed; val = std::move(o.val); o.s = sMovedFrom; return *this; }

Member Data Documentation

◆ s

State Oracle::s

◆ val

OracleVal Oracle::val

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