Merge remote-tracking branch 'origin/develop' into HEAD

This commit is contained in:
Eric Niebler 2015-03-04 12:36:38 -08:00
commit a19bc0a6dd
2 changed files with 23 additions and 2 deletions

View File

@ -398,10 +398,16 @@ struct foreach_reference
// encode_type
//
template<typename T>
inline type2type<T> *encode_type(T &, boost::mpl::false_ *) { return 0; }
inline type2type<T> *encode_type(T &, boost::false_type*) { return 0; }
template<typename T>
inline type2type<T, const_> *encode_type(T const &, boost::mpl::true_ *) { return 0; }
inline type2type<T, const_> *encode_type(T const &, boost::true_type*) { return 0; }
template<typename T>
inline type2type<T> *encode_type(T &, boost::mpl::false_*) { return 0; }
template<typename T>
inline type2type<T, const_> *encode_type(T const &, boost::mpl::true_*) { return 0; }
///////////////////////////////////////////////////////////////////////////////
// set_false

15
meta/libraries.json Normal file
View File

@ -0,0 +1,15 @@
{
"key": "foreach",
"name": "Foreach",
"authors": [
"Eric Niebler"
],
"description": "In C++, writing a loop that iterates over a sequence is tedious. We can either use iterators, which requires a considerable amount of boiler-plate, or we can use the std::for_each() algorithm and move our loop body into a predicate, which requires no less boiler-plate and forces us to move our logic far from where it will be used. In contrast, some other languages, like Perl, provide a dedicated \"foreach\" construct that automates this process. BOOST_FOREACH is just such a construct for C++. It iterates over sequences for us, freeing us from having to deal directly with iterators or write predicates.",
"category": [
"Algorithms",
"Emulation"
],
"maintainers": [
"Eric Niebler <eric -at- boostpro.com>"
]
}