Update expected.md

This commit is contained in:
Peter Dimov
2017-06-03 14:45:22 +03:00
committed by GitHub
parent 4e34749d87
commit be5f19f7cf

View File

@ -114,10 +114,14 @@
template<class F> /*see below*/ operator>>( F && f ) const;
};
template<class T, class... E> inline constexpr bool operator==( expected<T, E...> const & x1, expected<T, E...> const & x2 );
template<class T, class... E> inline constexpr bool operator!=( expected<T, E...> const & x1, expected<T, E...> const & x2 );
template<class T, class... E>
inline constexpr bool operator==( expected<T, E...> const & x1, expected<T, E...> const & x2 );
template<class T, class... E>
inline constexpr bool operator!=( expected<T, E...> const & x1, expected<T, E...> const & x2 );
template<class T, class... E> inline void swap( expected<T, E...> & x1, expected<T, E...> & x2 ) noexcept( /*see below*/ );
template<class T, class... E>
inline void swap( expected<T, E...> & x1, expected<T, E...> & x2 ) noexcept( /*see below*/ );
} // namespace variant2
} // namespace boost