Sprout/sprout/cstdlib/div.hpp

332 lines
10 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
Copyright (C) 2011 RiSK (sscrisk)
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTDLIB_DIV_HPP
#define SPROUT_CSTDLIB_DIV_HPP
#include <cstdlib>
2014-07-30 05:05:55 +00:00
#include <functional>
2012-04-01 13:15:09 +00:00
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
2014-07-30 05:05:55 +00:00
#include <sprout/functional/hash.hpp>
#include <sprout/utility/move.hpp>
#include <sprout/type_traits/integral_constant.hpp>
#include <sprout/type_traits/identity.hpp>
#include <sprout/detail/nil_base.hpp>
2012-04-01 13:15:09 +00:00
namespace sprout {
2014-07-30 05:05:55 +00:00
//
// div_t
// ldiv_t
// lldiv_t
//
typedef std::div_t div_t;
typedef std::ldiv_t ldiv_t;
typedef std::lldiv_t lldiv_t;
2012-04-01 13:15:09 +00:00
namespace detail {
template<typename T>
struct div_t_traits {};
2012-05-05 06:57:55 +00:00
# define SPROUT_DETAIL_DIV_T_TRAITS_IMPL(INT_T, DIV_T) \
template<> \
struct div_t_traits<INT_T> { \
public: \
typedef DIV_T type; \
SPROUT_STATIC_CONSTEXPR std::size_t offsetof_quot = offsetof(DIV_T, quot); \
SPROUT_STATIC_CONSTEXPR std::size_t offsetof_rem = offsetof(DIV_T, rem); \
2012-05-05 06:57:55 +00:00
}
2014-07-30 05:05:55 +00:00
SPROUT_DETAIL_DIV_T_TRAITS_IMPL(int, sprout::div_t);
SPROUT_DETAIL_DIV_T_TRAITS_IMPL(long, sprout::ldiv_t);
SPROUT_DETAIL_DIV_T_TRAITS_IMPL(long long, sprout::lldiv_t);
2012-05-05 06:57:55 +00:00
# undef SPROUT_DETAIL_DIV_T_TRAITS_IMPL
2012-04-01 13:15:09 +00:00
2012-12-17 11:10:17 +00:00
template<typename T>
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::detail::div_t_traits<T>::offsetof_quot == 0,
typename sprout::detail::div_t_traits<T>::type
>::type
2012-10-05 15:58:56 +00:00
div_impl(T const& numer, T const& denom) {
2012-12-17 11:10:17 +00:00
#if defined(_MSC_VER)
typename sprout::detail::div_t_traits<T>::type result = {numer / denom, numer % denom};
return result;
#else
2012-04-01 13:15:09 +00:00
return {numer / denom, numer % denom};
2012-12-17 11:10:17 +00:00
#endif
2012-04-01 13:15:09 +00:00
}
2012-12-17 11:10:17 +00:00
template<typename T>
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::detail::div_t_traits<T>::offsetof_rem == 0,
typename sprout::detail::div_t_traits<T>::type
>::type
2012-10-05 15:58:56 +00:00
div_impl(T const &numer, T const& denom) {
2012-12-17 11:10:17 +00:00
#if defined(_MSC_VER)
typename sprout::detail::div_t_traits<T>::type result = {numer % denom, numer / denom};
return result;
#else
2012-04-01 13:15:09 +00:00
return {numer % denom, numer / denom};
2012-12-17 11:10:17 +00:00
#endif
2012-04-01 13:15:09 +00:00
}
} // namespace detail
2013-03-22 05:24:19 +00:00
// 7.20.6.2 div<69>Cldiv<69>C<EFBFBD>y<EFBFBD><79> lldiv <20>֐<EFBFBD>
2014-07-30 05:05:55 +00:00
inline SPROUT_CONSTEXPR sprout::div_t
2012-10-05 15:58:56 +00:00
div(int numer, int denom) {
2012-04-01 13:15:09 +00:00
return sprout::detail::div_impl(numer, denom);
}
2014-07-30 05:05:55 +00:00
inline SPROUT_CONSTEXPR sprout::ldiv_t
2012-10-05 15:58:56 +00:00
ldiv(long numer, long denom) {
2012-04-01 13:15:09 +00:00
return sprout::detail::div_impl(numer, denom);
}
2014-07-30 05:05:55 +00:00
inline SPROUT_CONSTEXPR sprout::lldiv_t
2012-10-05 15:58:56 +00:00
lldiv(long long numer, long long denom) {
2012-04-01 13:15:09 +00:00
return sprout::detail::div_impl(numer, denom);
}
2014-07-30 05:05:55 +00:00
inline SPROUT_CONSTEXPR sprout::ldiv_t
2012-10-05 15:58:56 +00:00
div(long numer, long denom) {
2012-04-01 13:15:09 +00:00
return sprout::ldiv(numer, denom);
}
2014-07-30 05:05:55 +00:00
inline SPROUT_CONSTEXPR sprout::lldiv_t
2012-10-05 15:58:56 +00:00
div(long long numer, long long denom) {
2012-04-01 13:15:09 +00:00
return sprout::lldiv(numer, denom);
}
} // namespace sprout
2014-07-30 05:05:55 +00:00
namespace sprout {
//
// hash_value
//
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::div_t const& v) {
return sprout::hash_values(v.quot, v.rem);
}
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::ldiv_t const& v) {
return sprout::hash_values(v.quot, v.rem);
}
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::lldiv_t const& v) {
return sprout::hash_values(v.quot, v.rem);
}
} // namespace sprout
namespace sprout {
namespace tuples {
namespace detail {
template<std::size_t I, typename T>
struct tuple_element_impl;
template<std::size_t I>
struct tuple_element_impl<I, sprout::div_t>
: public sprout::detail::nil_base
{};
template<>
struct tuple_element_impl<0, sprout::div_t>
: public sprout::identity<int>
{};
template<>
struct tuple_element_impl<1, sprout::div_t>
: public sprout::identity<int>
{};
template<std::size_t I>
struct tuple_element_impl<I, sprout::ldiv_t>
: public sprout::detail::nil_base
{};
template<>
struct tuple_element_impl<0, sprout::ldiv_t>
: public sprout::identity<long>
{};
template<>
struct tuple_element_impl<1, sprout::ldiv_t>
: public sprout::identity<long>
{};
template<std::size_t I>
struct tuple_element_impl<I, sprout::lldiv_t>
: public sprout::detail::nil_base
{};
template<>
struct tuple_element_impl<0, sprout::lldiv_t>
: public sprout::identity<long long>
{};
template<>
struct tuple_element_impl<1, sprout::lldiv_t>
: public sprout::identity<long long>
{};
template<std::size_t I, typename T>
struct get_impl;
template<>
struct get_impl<0, sprout::div_t> {
public:
SPROUT_CONSTEXPR int& operator()(sprout::div_t& t) const {
return t.quot;
}
SPROUT_CONSTEXPR int const& operator()(sprout::div_t const& t) const {
return t.quot;
}
};
template<>
struct get_impl<1, sprout::div_t> {
public:
SPROUT_CONSTEXPR int& operator()(sprout::div_t& t) const {
return t.rem;
}
SPROUT_CONSTEXPR int const& operator()(sprout::div_t const& t) const {
return t.rem;
}
};
template<>
struct get_impl<0, sprout::ldiv_t> {
public:
SPROUT_CONSTEXPR long& operator()(sprout::ldiv_t& t) const {
return t.quot;
}
SPROUT_CONSTEXPR long const& operator()(sprout::ldiv_t const& t) const {
return t.quot;
}
};
template<>
struct get_impl<1, sprout::ldiv_t> {
public:
SPROUT_CONSTEXPR long& operator()(sprout::ldiv_t& t) const {
return t.rem;
}
SPROUT_CONSTEXPR long const& operator()(sprout::ldiv_t const& t) const {
return t.rem;
}
};
template<>
struct get_impl<0, sprout::lldiv_t> {
public:
SPROUT_CONSTEXPR long long& operator()(sprout::lldiv_t& t) const {
return t.quot;
}
SPROUT_CONSTEXPR long long const& operator()(sprout::lldiv_t const& t) const {
return t.quot;
}
};
template<>
struct get_impl<1, sprout::lldiv_t> {
public:
SPROUT_CONSTEXPR long long& operator()(sprout::lldiv_t& t) const {
return t.rem;
}
SPROUT_CONSTEXPR long long const& operator()(sprout::lldiv_t const& t) const {
return t.rem;
}
};
} // namespace detail
} // namespace tuples
} // namespace sprout
namespace std {
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
//
// tuple_size
//
template<>
struct tuple_size<sprout::div_t>
: public sprout::integral_constant<std::size_t, 2>
{};
template<>
struct tuple_size<sprout::ldiv_t>
: public sprout::integral_constant<std::size_t, 2>
{};
template<>
struct tuple_size<sprout::lldiv_t>
: public sprout::integral_constant<std::size_t, 2>
{};
//
// tuple_element
//
template<std::size_t I>
struct tuple_element<I, sprout::div_t>
: public sprout::tuples::detail::tuple_element_impl<I, sprout::div_t>
{};
template<std::size_t I>
struct tuple_element<I, sprout::ldiv_t>
: public sprout::tuples::detail::tuple_element_impl<I, sprout::ldiv_t>
{};
template<std::size_t I>
struct tuple_element<I, sprout::lldiv_t>
: public sprout::tuples::detail::tuple_element_impl<I, sprout::lldiv_t>
{};
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace std
namespace sprout {
//
// tuple_get
//
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::div_t>::type&
tuple_get(sprout::div_t& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::div_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::div_t>::type const&
tuple_get(sprout::div_t const& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::div_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::div_t>::type&&
tuple_get(sprout::div_t&& t) SPROUT_NOEXCEPT {
return sprout::move(sprout::tuples::get<I>(t));
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::ldiv_t>::type&
tuple_get(sprout::ldiv_t& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::ldiv_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::ldiv_t>::type const&
tuple_get(sprout::ldiv_t const& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::ldiv_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::ldiv_t>::type&&
tuple_get(sprout::ldiv_t&& t) SPROUT_NOEXCEPT {
return sprout::move(sprout::tuples::get<I>(t));
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::lldiv_t>::type&
tuple_get(sprout::lldiv_t& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::lldiv_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::lldiv_t>::type const&
tuple_get(sprout::lldiv_t const& t) SPROUT_NOEXCEPT {
static_assert(I < 2, "tuple_get: index out of range");
return sprout::tuples::detail::get_impl<I, sprout::lldiv_t>()(t);
}
template<std::size_t I>
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::lldiv_t>::type&&
tuple_get(sprout::lldiv_t&& t) SPROUT_NOEXCEPT {
return sprout::move(sprout::tuples::get<I>(t));
}
} // namespace sprout
2012-04-01 13:15:09 +00:00
#endif // #ifndef SPROUT_CSTDLIB_DIV_HPP