mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix detail/* directory structures.
This commit is contained in:
parent
1636398742
commit
c6fb8af0c5
16 changed files with 24 additions and 24 deletions
118
sprout/detail/math/float.hpp
Normal file
118
sprout/detail/math/float.hpp
Normal file
|
@ -0,0 +1,118 @@
|
|||
#ifndef SPROUT_DETAIL_FLOAT_HPP
|
||||
#define SPROUT_DETAIL_FLOAT_HPP
|
||||
|
||||
#include <cmath>
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
//
|
||||
// float_pow10
|
||||
//
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
float_pow10_positive(int exponent) {
|
||||
return exponent ? sprout::detail::float_pow10_positive<FloatType>(exponent - 1) * 10
|
||||
: FloatType(1)
|
||||
;
|
||||
}
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
float_pow10_negative(int exponent) {
|
||||
return exponent ? sprout::detail::float_pow10_negative<FloatType>(exponent + 1) / 10
|
||||
: FloatType(1)
|
||||
;
|
||||
}
|
||||
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
float_pow10(int exponent) {
|
||||
return exponent < 0
|
||||
? sprout::detail::float_pow10_negative<FloatType>(exponent)
|
||||
: sprout::detail::float_pow10_positive<FloatType>(exponent)
|
||||
;
|
||||
}
|
||||
|
||||
//
|
||||
// float_exponent10
|
||||
//
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_exponent10_positive(FloatType val) {
|
||||
return val < 10 ? 0
|
||||
: 1 + sprout::detail::float_exponent10_positive(val / 10)
|
||||
;
|
||||
}
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_exponent10_negative(FloatType val) {
|
||||
return val < 1 ? 1 + sprout::detail::float_exponent10_negative(val * 10)
|
||||
: 0
|
||||
;
|
||||
}
|
||||
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_exponent10(FloatType val) {
|
||||
return val < 0
|
||||
? val > -1
|
||||
? sprout::detail::float_exponent10_negative(-val)
|
||||
: sprout::detail::float_exponent10_positive(-val)
|
||||
: val < 1
|
||||
? sprout::detail::float_exponent10_negative(val)
|
||||
: sprout::detail::float_exponent10_positive(val)
|
||||
;
|
||||
}
|
||||
|
||||
//
|
||||
// float_digits
|
||||
//
|
||||
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_digits_impl(FloatType val) {
|
||||
return val < 1 ? 0
|
||||
: 1 + sprout::detail::float_digits_impl(val / 10)
|
||||
;
|
||||
}
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_digits(FloatType val) {
|
||||
return val < 0
|
||||
? val > -1 ? 1 : 1 + sprout::detail::float_digits_impl(-val / 10)
|
||||
: val < 1 ? 1 : 1 + sprout::detail::float_digits_impl(val / 10)
|
||||
;
|
||||
}
|
||||
|
||||
//
|
||||
// float_digit_at
|
||||
//
|
||||
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_digit_of_impl(FloatType val) {
|
||||
using std::floor;
|
||||
return static_cast<int>((val - floor(val)) * 10);
|
||||
}
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
float_digit_at(FloatType val, int digits) {
|
||||
return sprout::detail::float_digit_of_impl(val / sprout::detail::float_pow10<FloatType>(digits + 1));
|
||||
}
|
||||
|
||||
//
|
||||
// float_round_at
|
||||
//
|
||||
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
float_round_impl(FloatType val, FloatType p10) {
|
||||
using std::round;
|
||||
return round(val * p10) / p10;
|
||||
}
|
||||
template<typename FloatType>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
float_round_at(FloatType val, int digits) {
|
||||
return sprout::detail::float_round_impl(val, sprout::detail::float_pow10<FloatType>(digits));
|
||||
}
|
||||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_FLOAT_HPP
|
52
sprout/detail/math/int.hpp
Normal file
52
sprout/detail/math/int.hpp
Normal file
|
@ -0,0 +1,52 @@
|
|||
#ifndef SPROUT_DETAIL_INT_HPP
|
||||
#define SPROUT_DETAIL_INT_HPP
|
||||
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
//
|
||||
// int_pow
|
||||
//
|
||||
template<typename IntType, int Base = 10, typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR IntType
|
||||
int_pow(int exponent) {
|
||||
return exponent ? Base * sprout::detail::int_pow<IntType, Base>(exponent - 1)
|
||||
: 1
|
||||
;
|
||||
}
|
||||
|
||||
//
|
||||
// int_digits
|
||||
//
|
||||
template<int Base = 10, typename IntType>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
int_digits_impl(IntType val) {
|
||||
return val ? 1 + sprout::detail::int_digits_impl<Base>(val / Base)
|
||||
: 0
|
||||
;
|
||||
}
|
||||
template<int Base = 10, typename IntType, typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
int_digits(IntType val) {
|
||||
return val ? 1 + sprout::detail::int_digits_impl<Base>(val / Base)
|
||||
: 1
|
||||
;
|
||||
}
|
||||
|
||||
//
|
||||
// int_digit_at
|
||||
//
|
||||
template<int Base = 10, typename IntType, typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
int_digit_at(IntType val, int digits) {
|
||||
return val < 0 ? -((val / sprout::detail::int_pow<IntType, Base>(digits)) % Base)
|
||||
: (val / sprout::detail::int_pow<IntType, Base>(digits)) % Base
|
||||
;
|
||||
}
|
||||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_INT_HPP
|
Loading…
Add table
Add a link
Reference in a new issue