STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Namespaces | Classes | Functions
experimental Namespace Reference

Namespaces

 filesystem
 
 fundamentals_v2
 

Classes

struct  _Resumable_helper_traits
 
struct  coroutine_handle
 
struct  coroutine_handle< void >
 
struct  coroutine_traits
 
struct  generator
 
struct  suspend_always
 
struct  suspend_if
 
struct  suspend_never
 

Functions

template<typename _PromiseT >
bool operator== (coroutine_handle< _PromiseT > const &_Left, coroutine_handle< _PromiseT > const &_Right) _NOEXCEPT
 
template<typename _PromiseT >
bool operator!= (coroutine_handle< _PromiseT > const &_Left, coroutine_handle< _PromiseT > const &_Right) _NOEXCEPT
 

Function Documentation

template<typename _PromiseT >
bool experimental::operator!= ( coroutine_handle< _PromiseT > const &  _Left,
coroutine_handle< _PromiseT > const &  _Right 
)
185  {
186  return !(_Left == _Right);
187  }
constexpr const _Ty &() _Left
Definition: algorithm:3722
constexpr const _Ty &() _Right
Definition: algorithm:3723
template<typename _PromiseT >
bool experimental::operator== ( coroutine_handle< _PromiseT > const &  _Left,
coroutine_handle< _PromiseT > const &  _Right 
)
178  {
179  return _Left.address() == _Right.address();
180  }
constexpr const _Ty &() _Left
Definition: algorithm:3722
constexpr const _Ty &() _Right
Definition: algorithm:3723