STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | List of all members
bit_or< void > Struct Template Reference

Public Types

typedef int is_transparent
 

Public Member Functions

template<class _Ty1 , class _Ty2 >
constexpr auto operator() (_Ty1 &&_Left, _Ty2 &&_Right) const -> decltype(_STD forward< _Ty1 >(_Left)|_STD forward< _Ty2 >(_Right))
 

Member Typedef Documentation

typedef int bit_or< void >::is_transparent

Member Function Documentation

template<class _Ty1 , class _Ty2 >
constexpr auto bit_or< void >::operator() ( _Ty1 &&  _Left,
_Ty2 &&  _Right 
) const -> decltype(_STD forward<_Ty1>(_Left) | _STD forward<_Ty2>(_Right))
inline
427  { // transparently apply operator| to operands
428  return (_STD forward<_Ty1>(_Left) | _STD forward<_Ty2>(_Right));
429  }
constexpr const _Ty &() _Left
Definition: algorithm:3590
constexpr const _Ty &() _Right
Definition: algorithm:3591

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