mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
172 lines
6 KiB
C++
172 lines
6 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
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)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_UTILITY_STRING_REF_STRING_TO_INT_HPP
|
|
#define SPROUT_UTILITY_STRING_REF_STRING_TO_INT_HPP
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/utility/string_ref/string_ref.hpp>
|
|
#include <sprout/cstdlib/str_to_int.hpp>
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
namespace sprout {
|
|
namespace detail {
|
|
template<typename IntType, typename Elem, typename Traits>
|
|
inline IntType
|
|
string_to_int_dynamic(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
Elem* endptr = nullptr;
|
|
IntType result = sprout::detail::str_to_int<IntType>(str.c_str(), &endptr, base);
|
|
*idx = endptr - str.c_str();
|
|
return result;
|
|
}
|
|
}
|
|
|
|
//
|
|
// string_to_int
|
|
//
|
|
template<
|
|
typename IntType, typename Elem, typename Traits,
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR IntType
|
|
string_to_int(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return !idx ? sprout::detail::str_to_int<IntType>(str.begin(), base)
|
|
: sprout::detail::string_to_int_dynamic<IntType>(str, idx, base)
|
|
;
|
|
}
|
|
template<
|
|
typename IntType, typename Elem, typename Traits,
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR IntType
|
|
string_to_int(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::detail::str_to_int<IntType>(str.begin(), base);
|
|
}
|
|
|
|
//
|
|
// stoi
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR int
|
|
stoi(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<int>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR int
|
|
stoi(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<int>(str, base);
|
|
}
|
|
|
|
//
|
|
// stol
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR long
|
|
stol(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<long>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR long
|
|
stol(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<long>(str, base);
|
|
}
|
|
|
|
//
|
|
// stoul
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR unsigned long
|
|
stoul(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<unsigned long>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR unsigned long
|
|
stoul(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<unsigned long>(str, base);
|
|
}
|
|
|
|
//
|
|
// stoll
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR long long
|
|
stoll(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<long long>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR long long
|
|
stoll(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<long long>(str, base);
|
|
}
|
|
|
|
//
|
|
// stoull
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR unsigned long long
|
|
stoull(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<unsigned long long>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR unsigned long long
|
|
stoull(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<unsigned long long>(str, base);
|
|
}
|
|
|
|
//
|
|
// stoimax
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR std::intmax_t
|
|
stoimax(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<std::intmax_t>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR std::intmax_t
|
|
stoimax(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<std::intmax_t>(str, base);
|
|
}
|
|
|
|
//
|
|
// stoumax
|
|
//
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR std::uintmax_t
|
|
stoumax(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx, int base = 10) {
|
|
return sprout::string_to_int<std::uintmax_t>(str, idx, base);
|
|
}
|
|
template<typename Elem, typename Traits>
|
|
inline SPROUT_CONSTEXPR std::uintmax_t
|
|
stoumax(sprout::basic_string_ref<Elem, Traits> const& str, int base = 10) {
|
|
return sprout::string_to_int<std::uintmax_t>(str, base);
|
|
}
|
|
|
|
//
|
|
// from_string
|
|
//
|
|
template<
|
|
typename IntType, typename Elem, typename Traits,
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR IntType
|
|
from_string(sprout::basic_string_ref<Elem, Traits> const& str, std::size_t* idx) {
|
|
return sprout::string_to_int<IntType>(str, idx, 0);
|
|
}
|
|
template<
|
|
typename IntType, typename Elem, typename Traits,
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR IntType
|
|
from_string(sprout::basic_string_ref<Elem, Traits> const& str) {
|
|
return sprout::string_to_int<IntType>(str, 0);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_STRING_REF_STRING_TO_INT_HPP
|