From 1f6936f621a7a3c68503e919d6289713a5b32f81 Mon Sep 17 00:00:00 2001 From: "Watal M. Iwasaki" Date: Mon, 28 Oct 2024 01:33:02 +0900 Subject: [PATCH] :art: Remove detail::join() --- include/clippson/clippson.hpp | 34 ++++++++-------------------------- 1 file changed, 8 insertions(+), 26 deletions(-) diff --git a/include/clippson/clippson.hpp b/include/clippson/clippson.hpp index f46dd69..33f357b 100644 --- a/include/clippson/clippson.hpp +++ b/include/clippson/clippson.hpp @@ -26,27 +26,11 @@ struct is_vector> : std::true_type {}; template inline constexpr bool is_vector_v = is_vector::value; -template inline -std::ostream& join(const T& v, std::ostream& ost, std::string_view delimiter) { - if (v.empty()) return ost; - auto it = v.begin(); - ost << *it; - for (++it; it != v.end(); ++it) { - ost << delimiter << *it; - } - return ost; -} - inline std::string to_string(const nlohmann::json& x) { - std::ostringstream oss; if (x.is_string()) { - oss << x.get(); - } else if (x.is_array()) { - join(x, oss, ","); - } else { - oss << x; + return x.get(); } - return oss.str(); + return x.dump(-1); } inline std::string_view lstrip(std::string_view s) { @@ -68,11 +52,7 @@ inline std::string longest(const std::vector& args) { template inline std::string doc_default(const T& x, std::string_view doc) { std::ostringstream oss; - if constexpr (is_vector_v) { - join(x, oss << doc << " (=[", ",") << "])"; - } else { - oss << doc << " (=" << x << ")"; - } + oss << doc << " (=" << nlohmann::json(x) << ")"; return oss.str(); } @@ -199,9 +179,11 @@ value(nlohmann::json* obj, std::string_view label, Target* target, Rest*... rest template inline clipp::parameter command(const T& x) { - std::ostringstream oss; - oss << x; - return clipp::command(oss.str()); + if constexpr (std::is_convertible_v) { + return clipp::command(x); + } else { + return clipp::command(std::to_string(x)); + } } template inline clipp::parameter