proxygen
folly::expected_detail::MoveConstructible< Derived, bool, Noexcept > Struct Template Reference

#include <Expected.h>

Public Member Functions

constexpr MoveConstructible ()=default
 
constexpr MoveConstructible (const MoveConstructible &)=default
 
 MoveConstructible (MoveConstructible &&that) noexcept(Noexcept)
 
MoveConstructibleoperator= (const MoveConstructible &)=default
 
MoveConstructibleoperator= (MoveConstructible &&)=default
 

Detailed Description

template<class Derived, bool, bool Noexcept>
struct folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >

Definition at line 332 of file Expected.h.

Constructor & Destructor Documentation

template<class Derived, bool , bool Noexcept>
constexpr folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >::MoveConstructible ( )
default
template<class Derived, bool , bool Noexcept>
constexpr folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >::MoveConstructible ( const MoveConstructible< Derived, bool, Noexcept > &  )
default
template<class Derived, bool , bool Noexcept>
folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >::MoveConstructible ( MoveConstructible< Derived, bool, Noexcept > &&  that)
inlinenoexcept

Definition at line 335 of file Expected.h.

335  {
336  static_cast<Derived*>(this)->assign(std::move(static_cast<Derived&>(that)));
337  }
constexpr detail::Map< Move > move
Definition: Base-inl.h:2567

Member Function Documentation

template<class Derived, bool , bool Noexcept>
MoveConstructible& folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >::operator= ( const MoveConstructible< Derived, bool, Noexcept > &  )
default
template<class Derived, bool , bool Noexcept>
MoveConstructible& folly::expected_detail::MoveConstructible< Derived, bool, Noexcept >::operator= ( MoveConstructible< Derived, bool, Noexcept > &&  )
default

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