|
|
| operator T & () |
| |
|
| operator const T & () const |
| |
|
| ebco (const ebco &)=default |
| |
|
| ebco (ebco &&)=default |
| |
|
| ebco (const T &v) noexcept(std::is_nothrow_copy_constructible_v< T >) |
| |
|
| ebco (T &&v) noexcept(std::is_nothrow_move_constructible_v< T >) |
| |
|
| ebco (Arg &&arg, Args &&... args) noexcept(std::is_nothrow_constructible_v< T, Arg, Args... >) |
| |
|
ebco & | operator= (const ebco &)=default |
| |
|
ebco & | operator= (ebco &&)=default |
| |
|
ebco & | operator= (const T &v) noexcept(std::is_nothrow_copy_assignable_v< T >) |
| |
|
ebco & | operator= (T &&v) noexcept(std::is_nothrow_move_assignable_v< T >) |
| |
|
T & | value () &noexcept |
| |
|
T const & | value () const &noexcept |
| |
|
T && | value () &&noexcept |
| |
The documentation for this struct was generated from the following file: