// Copyright Toru Niina 2017. // Distributed under the MIT License. #ifndef TOML11_UTILITY_HPP #define TOML11_UTILITY_HPP #include "traits.hpp" #include #include #include #if __cplusplus >= 201402L # define TOML11_MARK_AS_DEPRECATED(msg) [[deprecated(msg)]] #elif defined(__GNUC__) # define TOML11_MARK_AS_DEPRECATED(msg) __attribute__((deprecated(msg))) #elif defined(_MSC_VER) # define TOML11_MARK_AS_DEPRECATED(msg) __declspec(deprecated(msg)) #else # define TOML11_MARK_AS_DEPRECATED #endif namespace toml { #if __cplusplus >= 201402L using std::make_unique; #else template inline std::unique_ptr make_unique(Ts&& ... args) { return std::unique_ptr(new T(std::forward(args)...)); } #endif // __cplusplus >= 2014 namespace detail { template inline void resize_impl(T& container, std::size_t N, std::true_type) { container.resize(N); return ; } template inline void resize_impl(T& container, std::size_t N, std::false_type) { if(container.size() >= N) {return;} throw std::invalid_argument("not resizable type"); } } // detail template inline void resize(T& container, std::size_t N) { if(container.size() == N) {return;} return detail::resize_impl(container, N, detail::has_resize_method()); } namespace detail { inline std::string concat_to_string_impl(std::ostringstream& oss) { return oss.str(); } template std::string concat_to_string_impl(std::ostringstream& oss, T&& head, Ts&& ... tail) { oss << std::forward(head); return concat_to_string_impl(oss, std::forward(tail) ... ); } } // detail template std::string concat_to_string(Ts&& ... args) { std::ostringstream oss; oss << std::boolalpha << std::fixed; return detail::concat_to_string_impl(oss, std::forward(args) ...); } template T from_string(const std::string& str, T opt) { T v(opt); std::istringstream iss(str); iss >> v; return v; } }// toml #endif // TOML11_UTILITY