diff --git a/doc/tuple_users_guide.html b/doc/tuple_users_guide.html index 87f2983..4d0d4eb 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -75,13 +75,22 @@ Both tuple_io.hpp and tuple_comparison.hpp include CopyConstructible [C++ Standard 20.1.3]. (To be precise, CopyConstrucible is an unnecessary strong requirement for a valid element type, as the operator& is not used by the library.) +

+ +

+Examples of types that are not allowed as tuple elements:

-However, a reference to a non-copyable type is a valid element type. + +Note that a reference to any of these non-copyable types is a valid element +type.

For example, the following definitions are valid tuple instantiations (A, B and C are some user defined classes):