/*! @file Defines `boost::hana::detail::array`. @copyright Louis Dionne 2013-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 BOOST_HANA_DETAIL_ARRAY_HPP #define BOOST_HANA_DETAIL_ARRAY_HPP #include #include #include #include BOOST_HANA_NAMESPACE_BEGIN namespace detail { template constexpr N factorial(N n) { N result = 1; while (n != 0) result *= n--; return result; } //! @ingroup group-details //! A minimal `std::array` with better `constexpr` support. //! //! We also provide some algorithms from the `constexpr/algorithm.hpp` //! header as member functions to make them easier to use in constexpr //! contexts, since a `constexpr` `array` can't be mutated in place. template struct array { T elems_[Size > 0 ? Size : 1]; constexpr T& operator[](std::size_t n) { return elems_[n]; } constexpr T const& operator[](std::size_t n) const { return elems_[n]; } constexpr std::size_t size() const noexcept { return Size; } constexpr T* begin() noexcept { return elems_; } constexpr T const* begin() const noexcept { return elems_; } constexpr T* end() noexcept { return elems_ + Size; } constexpr T const* end() const noexcept { return elems_ + Size; } // Algorithms from constexpr/algorithm.hpp constexpr array reverse() const { array result = *this; detail::reverse(result.begin(), result.end()); return result; } template constexpr auto permutations(BinaryPred pred) const { array, detail::factorial(Size)> result{}; auto out = result.begin(); array copy = *this; do *out++ = copy; while (detail::next_permutation(copy.begin(), copy.end(), pred)); return result; } constexpr auto permutations() const { return this->permutations(hana::_ < hana::_); } template constexpr auto sort(BinaryPred pred) const { array result = *this; detail::sort(result.begin(), result.end(), pred); return result; } constexpr auto sort() const { return this->sort(hana::_ < hana::_); } template constexpr auto iota(U value) const { array result = *this; detail::iota(result.begin(), result.end(), value); return result; } }; template constexpr bool operator==(array a, array b) { return M == N && detail::equal(a.begin(), a.end(), b.begin(), b.end()); } template constexpr bool operator<(array a, array b) { return M < N || detail::lexicographical_compare(a.begin(), a.end(), b.begin(), b.end()); } } BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_DETAIL_ARRAY_HPP