hana/test/_include/support/counter.hpp
Jason Rice 6d086796a3 [index_if] New index_if function
- Adds index_if
    - Rewrites detail::index_if to use recursive alias stuff
      optimized for tuple and basic_tuple
    - find_if now uses index_if for Iterables
    - at_key now uses index_if for Sequence
    - Removes duplicate code and unnecessary special case implementations
        - detail::advance_until
        - at_key::advance_until
        - tuple_tag implementation of find_if
    - Uses Foldable instead of Sequence for cases where length is known.
      (find_if had a specialization when Iterable and not Sequence)
    - Adds test.*.auto.index_if for Sequences
    - Adds test support/counter for testing infinite iterables
2017-04-07 16:19:52 -07:00

57 lines
1.5 KiB
C++

// Copyright Louis Dionne 2013-2017
// Copyright Jason Rice 2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
#ifndef TEST_SUPPORT_COUNTER_HPP
#define TEST_SUPPORT_COUNTER_HPP
#include <boost/hana/fwd/at.hpp>
#include <boost/hana/fwd/concept/iterable.hpp>
#include <boost/hana/fwd/drop_front.hpp>
#include <boost/hana/fwd/is_empty.hpp>
#include <boost/hana/integral_constant.hpp>
// Counter - an infinite iterable for the masses
struct Counter_tag { };
template <std::size_t N = 0>
struct Counter {
using hana_tag = Counter_tag;
static constexpr std::size_t value = N;
};
namespace boost { namespace hana {
//////////////////////////////////////////////////////////////////////////
// Iterable
//////////////////////////////////////////////////////////////////////////
template <>
struct at_impl<Counter_tag> {
template <typename T, typename N>
static constexpr decltype(auto) apply(T, N) {
return hana::size_c<T::value + N::value>;
}
};
template <>
struct drop_front_impl<Counter_tag> {
template <typename T, typename N>
static constexpr auto apply(T, N) {
return Counter<T::value + N::value>{};
}
};
template <>
struct is_empty_impl<Counter_tag> {
template <typename Xs>
static constexpr auto apply(Xs)
-> hana::false_
{ return {}; }
};
}} // end namespace boost::hana
#endif // !TEST_SUPPORT_COUNTER_HPP