|
|
| ebco (const ebco &)=default |
| |
|
| ebco (ebco &&)=default |
| |
|
ebco & | operator= (const ebco &)=default |
| |
|
ebco & | operator= (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 & | operator= (const T &v) noexcept(std::is_nothrow_copy_assignable_v< T >) |
| |
|
ebco & | operator= (T &&v) noexcept(std::is_nothrow_move_assignable_v< T >) |
| |
|
template<typename Arg , typename... Args, typename = std::enable_if_t< !std::is_same_v<std::remove_reference_t<std::remove_cv_t<Arg>>, ebco> && !std::is_same_v<std::remove_reference_t<std::remove_cv_t<Arg>>, T> && (sizeof...(Args) > 0 || !std::is_convertible_v<Arg, T>> |
| | ebco (Arg &&arg, Args &&... args) noexcept(std::is_nothrow_constructible_v< T, Arg, Args... >) |
| |
|
T & | value () &noexcept |
| |
|
T const & | value () const &noexcept |
| |
|
T && | value () &&noexcept |
| |
The documentation for this struct was generated from the following file: