One more example and integrate examples into the docs

This commit is contained in:
Antony Polukhin 2016-03-30 23:24:53 +03:00
parent 57205874ae
commit 24708cc109
3 changed files with 84 additions and 2 deletions

View File

@ -268,6 +268,12 @@ Issues with cross module type comparison on a bugged compilers are bypassed by d
[import ../examples/table_of_names.cpp]
[section Table of raw_name() and pretty_name() outputs with and without RTTI ] [type_index_names_table] [endsect]
[import ../examples/constexpr14_namespace_check.cpp]
[section C++14: Checking namespace at compile time ] [type_index_constexpr14_namespace_example] [endsect]
[import ../examples/constexpr14_sort_check.cpp]
[section C++14: Checking lexigraphical order of provided types ] [type_index_constexpr14_sort_check_example] [endsect]
[endsect]
[xinclude autodoc.xml]

View File

@ -17,7 +17,7 @@ constexpr bool starts_with(const char* name, const char (&ns)[N]) noexcept {
return true;
}
//[type_index_constexpr14_example
//[type_index_constexpr14_namespace_example
/*`
The following example shows that `boost::typeindex::ctti_type_index` is usable at compile time on
a C++14 compatible compilers.
@ -82,7 +82,7 @@ int main() {
// short sh = 0;
// s.serialize(sh); // Fails the static_assert!
}
//] [/type_index_constexpr14_example]
//] [/type_index_constexpr14_namespace_example]
#else // #if !defined(BOOST_NO_CXX14_CONSTEXPR) && !defined(BOOST_NO_CXX11_CONSTEXPR)

View File

@ -0,0 +1,76 @@
// Copyright 2013-2016 Antony Polukhin
// Distributed under the Boost Software License, Version 1.0.
// (See the accompanying file LICENSE_1_0.txt
// or a copy at <http://www.boost.org/LICENSE_1_0.txt>.)
#include <boost/config.hpp>
#if !defined(BOOST_NO_CXX14_CONSTEXPR) && !defined(BOOST_NO_CXX11_CONSTEXPR) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
//[type_index_constexpr14_sort_check_example
/*`
The following example shows that `boost::typeindex::ctti_type_index` is usable at compile time on
a C++14 compatible compilers to check order of template parameters.
Consider the situation when we have a function that accepts std::tuple, boost::variant or some other class that uses variadic templates:
*/
template <class... T> class types{};
template <class... T>
void do_something(const types<T...>& t) noexcept;
/*`
Such functions may be very usefull, however they may significantly increase the size of the resulting program. Each instantionation of such function with different templates order
consumes space in the resulting program:
// Types are same, but different order leads to new instantionation of do_something function.
types<bool, double, int>
types<bool, int, double>
types<int, bool, double>
types<int, double, bool>
types<double, int, bool>
types<double, bool, int>
One of the ways to reduce instantinations count is to force the types to have some order:
*/
#include <boost/type_index/ctti_type_index.hpp>
// Implementing type trait that returns true if the types are sorted lexographicaly
template <class... T>
constexpr bool is_asc_sorted(types<T...>) noexcept {
return true;
}
template <class Lhs, class Rhs, class... TN>
constexpr bool is_asc_sorted(types<Lhs, Rhs, TN...>) noexcept {
using namespace boost::typeindex;
return ctti_type_index::type_id<Lhs>() <= ctti_type_index::type_id<Rhs>()
&& is_asc_sorted(types<Rhs, TN...>());
}
// Using the newly created `is_asc_sorted` trait:
template <class... T>
void do_something(const types<T...>& t) noexcept {
static_assert(
is_asc_sorted( types<T...>() ),
"T... for do_something(const types<T...>& t) must be sorted ascending"
);
}
int main() {
do_something( types<bool, double, int>() );
// do_something( types<bool, int, double>() ); // Fails the static_assert!
}
//] [/type_index_constexpr14_sort_check_example]
#else // #if !defined(BOOST_NO_CXX14_CONSTEXPR) && !defined(BOOST_NO_CXX11_CONSTEXPR) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
int main() {}
#endif