xtd 1.0.0
Loading...
Searching...
No Matches
to_string_.hpp
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_TO_STRING_INTERNAL__)
7#error "Do not include this file: Internal use only. Include <xtd/to_string> or <xtd/to_string.hpp> instead."
8#endif
10
11//#include "globalization/culture_info.hpp"
12#include "stream_insertable.hpp"
13#include "to_string.hpp"
14
16template<xtd::iterable range_t>
17[[nodiscard]] auto __xtd_iterable_to_string(const range_t& values, const xtd::string& fmt, const std::locale& loc) -> std::string;
18
19template<typename value_t>
20[[nodiscard]] inline auto xtd::to_string(const value_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
21 if constexpr(std::is_polymorphic_v<value_t>) return __to_string_polymorphic(value, fmt, loc);
22 else if constexpr(std::is_enum_v<value_t>) return __enum_formatter<char>(fmt, value, loc);
23 else if constexpr(requires(const xtd::raw_type<value_t>& valuee, const xtd::string& _fmt) {{value.to_string(_fmt)} -> xtd::textual;}) return value.to_string(fmt);
24 else if constexpr(requires(const xtd::raw_type<value_t>& value) {{value.to_string()} -> xtd::textual;}) return value.to_string();
25 else if constexpr(xtd::iterable<value_t> && !std::is_same_v<value_t, xtd::string>) return __xtd_iterable_to_string(value, fmt, loc);
26 else if constexpr(xtd::stream_insertable<value_t>) {
27 auto ss = std::stringstream {};
28 ss << value;
29 return ss.str();
31}
32
33/*
34template<typename value_t>
35requires (requires (const xtd::raw_type<value_t>& value, const xtd::string& fmt) {{value.to_string(fmt)} -> xtd::textual;})
36[[nodiscard]] inline auto xtd::to_string(const value_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
37 return value.to_string(fmt);
38}
39
40template<typename value_t>
41requires (!requires (const xtd::raw_type<value_t>& value, const xtd::string& fmt) {{value.to_string(fmt)} -> xtd::textual;} && requires (const xtd::raw_type<value_t>& value) {{value.to_string()} -> xtd::textual;})
42[[nodiscard]] inline auto xtd::to_string(const value_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
43 return value.to_string();
44}
45*/
46
47template<>
48[[nodiscard]] inline auto xtd::to_string(const bool& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
49 return __boolean_formatter(fmt.chars(), value, loc);
50}
51
52template<>
53[[nodiscard]] inline auto xtd::to_string(const sbyte& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
54 return __numeric_formatter(fmt.chars(), value, loc);
55}
56
57template<>
58[[nodiscard]] inline auto xtd::to_string(const char& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
59 return __character_formatter(fmt.chars(), value, loc);
60}
61
62template<>
63[[nodiscard]] inline auto xtd::to_string(const unsigned char& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
64 return __numeric_formatter(fmt.chars(), value, loc);
65}
66
67template<>
68[[nodiscard]] inline auto xtd::to_string(const short& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
69 return __numeric_formatter(fmt.chars(), value, loc);
70}
71
72template<>
73[[nodiscard]] inline auto xtd::to_string(const unsigned short& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
74 return __numeric_formatter(fmt.chars(), value, loc);
75}
76
77template<>
78[[nodiscard]] inline auto xtd::to_string(const int& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
79 return __numeric_formatter(fmt.chars(), value, loc);
80}
81
82template<>
83[[nodiscard]] inline auto xtd::to_string(const unsigned int& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
84 return __numeric_formatter(fmt.chars(), value, loc);
85}
86
87template<>
88[[nodiscard]] inline auto xtd::to_string(const long& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
89 return __numeric_formatter(fmt.chars(), value, loc);
90}
91
92template<>
93[[nodiscard]] inline auto xtd::to_string(const unsigned long& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
94 return __numeric_formatter(fmt.chars(), value, loc);
95}
96
97template<>
98[[nodiscard]] inline auto xtd::to_string(const long long& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
99 return __numeric_formatter(fmt.chars(), value, loc);
100}
101
102template<>
103[[nodiscard]] inline auto xtd::to_string(const unsigned long long& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
104 return __numeric_formatter(fmt.chars(), value, loc);
105}
106
107template<>
108[[nodiscard]] inline auto xtd::to_string(const float& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
109 return __floating_point_formatter(fmt.chars(), value, loc);
110}
111
112template<>
113[[nodiscard]] inline auto xtd::to_string(const double& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
114 return __floating_point_formatter(fmt.chars(), value, loc);
115}
116
117template<>
118[[nodiscard]] inline auto xtd::to_string(const long double& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
119 return __floating_point_formatter(fmt.chars(), value, loc);
120}
121
122template<>
123[[nodiscard]] inline auto xtd::to_string(const std::chrono::system_clock::time_point& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
124 return __date_time_formatter(fmt.chars(), std::chrono::system_clock::to_time_t(value), std::chrono::duration_cast<std::chrono::nanoseconds>(value.time_since_epoch()).count() % 1000000000, loc);
125}
126
127template<>
128[[nodiscard]] inline auto xtd::to_string(const std::tm& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
129 return __date_time_formatter(fmt.chars(), value, 0, loc);
130}
131
132template<typename type_t, typename period_t>
133[[nodiscard]] inline auto xtd::to_string(const std::chrono::duration<type_t, period_t>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
134 return __duration_formatter(fmt.chars(), value, loc);
135}
136
137template<>
138[[nodiscard]] inline auto xtd::to_string(const char8& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
139 return __character_formatter(fmt.chars(), value, loc);
140}
141
142template<>
143[[nodiscard]] inline auto xtd::to_string(const char16& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
144 return __character_formatter(fmt.chars(), value, loc);
145}
146
147template<>
148[[nodiscard]] inline auto xtd::to_string(const char32& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
149 return __character_formatter(fmt.chars(), value, loc);
150}
151
152template<>
153[[nodiscard]] inline auto xtd::to_string(const wchar& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
154 return __character_formatter(fmt.chars(), value, loc);
155}
156
157template<typename value_t>
158[[nodiscard]] inline auto xtd::to_string(const value_t& value, const xtd::string& fmt) -> xtd::string {
159 return to_string(value, fmt, std::locale());
160}
161
162[[nodiscard]] inline auto xtd::to_string(const char* value, const xtd::string& fmt) -> xtd::string {
163 return to_string(value, fmt, std::locale());
164}
165
166template<>
167[[nodiscard]] inline auto xtd::to_string(const std::partial_ordering& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
168 if (value == std::partial_ordering::less) return "less";
169 if (value == std::partial_ordering::greater) return "greater";
170 return "equivalent";
171}
172
173template<>
174[[nodiscard]] inline auto xtd::to_string(const std::strong_ordering& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
175 if (value == std::strong_ordering::less) return "less";
176 if (value == std::strong_ordering::greater) return "greater";
177 return "equivalent";
178}
179
180template<>
181[[nodiscard]] inline auto xtd::to_string(const std::weak_ordering& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
182 if (value == std::weak_ordering::less) return "less";
183 if (value == std::weak_ordering::greater) return "greater";
184 return "equivalent";
185}
186
187template<typename value_t>
188[[nodiscard]] inline auto xtd::to_string(const value_t* value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
189 if (!value) return "(null)";
190 return __numeric_formatter(fmt.chars(), reinterpret_cast<intptr>(value), loc);
191}
192
193template<typename value_t>
194[[nodiscard]] inline auto xtd::to_string(value_t* const value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
195 if (!value) return "(null)";
196 return __numeric_formatter(fmt.chars(), reinterpret_cast<intptr>(value), loc);
197}
198
199template<typename type_t>
200[[nodiscard]] inline auto xtd::to_string(const std::shared_ptr<type_t>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
201 if (!value) return "(null)";
202 return __numeric_formatter(fmt.chars(), reinterpret_cast<intptr>(value.get()), loc);
203}
204
205template<typename type_t>
206[[nodiscard]] inline auto xtd::to_string(const std::unique_ptr<type_t>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
207 if (!value) return "(null)";
208 return __numeric_formatter(fmt.chars(), reinterpret_cast<intptr>(value.get()), loc);
209}
210
211template<>
212[[nodiscard]] inline auto xtd::to_string(const xtd::any& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
213 auto iterator = __any_stringer__.find(std::type_index(value.type()));
214 return iterator != __any_stringer__.cend() ? xtd::to_string(iterator->second(value), fmt, loc) : "(unregistered)";
215}
216
217template<typename type_t>
218[[nodiscard]] inline auto xtd::to_string(const std::optional<type_t>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
219 return !value.has_value() ? "(null)" : std::string {"("} + to_string(value.value(), fmt, loc).chars() + std::string {")"};
220}
221
222template<>
223[[nodiscard]] inline auto xtd::to_string(const std::nullopt_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
224 return "(null)";
225}
226
227template<>
228[[nodiscard]] inline auto xtd::to_string(const std::nullptr_t&, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
229 return "null";
230}
231
232template<typename type1_t, typename type2_t>
233[[nodiscard]] inline auto xtd::to_string(const std::pair<type1_t, type2_t>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
234 return std::string {"("} + to_string(value.first, fmt, loc).chars() + std::string {", "} + to_string(value.second, fmt, loc).chars() + std::string {")"};
235}
236
237template<typename type_t, unsigned n_t, unsigned last_t>
238[[nodiscard]] inline auto xtd::__xtd_tuple_stringer<type_t, n_t, last_t>::to_string(const std::string& str, const type_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
239 return __xtd_tuple_stringer < type_t, n_t + 1, last_t >::to_string(str + xtd::to_string(std::get<n_t>(value), fmt, loc).chars() + ", ", value, fmt, loc);
240}
241
242template<typename type_t, unsigned n_t>
243[[nodiscard]] inline auto xtd::__xtd_tuple_stringer<type_t, n_t, n_t>::to_string(const std::string& str, const type_t& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
244 return str + xtd::to_string(std::get<n_t>(value), fmt, loc).chars();
245}
246
247template<typename ...types_t>
248[[nodiscard]] inline auto xtd::to_string(const std::tuple<types_t ...>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
249 return __xtd_tuple_stringer < std::tuple<types_t ...>, 0, sizeof...(types_t) - 1 >::to_string(std::string {"("}, value, fmt, loc) + ")";
250}
251
252template<typename iterator_t>
253[[nodiscard]] inline auto __xtd_iterator_to_string(const std::string& str, iterator_t iterator, const iterator_t& begin, const iterator_t& end, const xtd::string& fmt, const std::locale& loc) -> std::string {
254 if (iterator == end) return str;
255 auto new_str = str + (iterator == begin ? std::string {} : std::string {", "}) + xtd::to_string(*iterator, fmt, loc).chars();
256 return __xtd_iterator_to_string(new_str, ++iterator, begin, end, fmt, loc);
257}
258
259template<typename iterator_t>
260[[nodiscard]] inline auto __xtd_sequence_container_to_string(const iterator_t& begin, const iterator_t& end, const xtd::string& fmt, const std::locale& loc) -> std::string {
261 return __xtd_iterator_to_string("[", begin, begin, end, fmt, loc) + "]";
262}
263
264template<xtd::iterable iterable_t>
265[[nodiscard]] inline auto __xtd_iterable_to_string(const iterable_t& values, const xtd::string& fmt, const std::locale& loc) -> std::string {
266 std::ostringstream oss;
267 oss.imbue(loc);
268 oss << "[";
269 auto first = true;
270 auto& mutable_values = const_cast<iterable_t&>(values);
271 for (const auto value : mutable_values) {
272 if (!first) oss << ", ";
273 first = false;
274 oss << xtd::to_string(value, fmt, loc);
275 }
276 oss << "]";
277 return oss.str();
278}
279
280template<typename type_t, xtd::usize size>
281[[nodiscard]] inline auto xtd::to_string(const std::array<type_t, size>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
282 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
283}
284
285template<xtd::usize size>
286[[nodiscard]] inline auto xtd::to_string(const std::bitset<size>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
287 auto result = xtd::string {"["};
288 for (auto index = xtd::usize {0}; index < values.length(); ++index)
289 result += (index ? ", " : "") + to_string(static_cast<bool>(values[index]), fmt, loc);
290 return result + "]";
291}
292
293template<typename type_t, typename allocator_t>
294[[nodiscard]] inline auto xtd::to_string(const std::deque<type_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
295 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
296}
297
298template<typename type_t, typename allocator_t>
299[[nodiscard]] inline auto xtd::to_string(const std::forward_list<type_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
300 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
301}
302
303template<typename type_t>
304[[nodiscard]] inline auto xtd::to_string(const std::initializer_list<type_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
305 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
306}
307
308template<typename type_t, typename allocator_t>
309[[nodiscard]] inline auto xtd::to_string(const std::list<type_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
310 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
311}
312
313template<typename type_t, typename container_t>
314[[nodiscard]] inline auto xtd::to_string(const std::queue<type_t, container_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
315 struct accessor : public std::queue<type_t> {static auto get() {return &accessor::c;}};
316 const auto& underlying_items = values.*accessor::get();
317 return __xtd_sequence_container_to_string(underlying_items.begin(), underlying_items.end(), fmt, loc);
318}
319
320template<typename type_t, typename container_t>
321[[nodiscard]] inline auto xtd::to_string(const std::priority_queue<type_t, container_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
322 struct std_priority_queue : public std::queue<type_t> {
323 std_priority_queue(const std::priority_queue<type_t>& queue) : ptr {reinterpret_cast<const std_priority_queue*>(&queue)} {}
324 auto begin() const {return ptr->c.begin();}
325 auto end() const {return ptr->c.end();}
326 const std_priority_queue* ptr;
327 };
328 auto items = std_priority_queue {values};
329 return __xtd_sequence_container_to_string(items.begin(), items.end(), fmt, loc);
330}
331
332template<typename type_t, typename container_t>
333[[nodiscard]] inline auto xtd::to_string(const std::stack<type_t, container_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
334 struct accessor : public std::stack<type_t> {static auto get() {return &accessor::c;}};
335 const auto& underlying_items = values.*accessor::get();
336 return __xtd_sequence_container_to_string(underlying_items.rbegin(), underlying_items.rend(), fmt, loc);
337}
338
339template<typename type_t>
340[[nodiscard]] inline auto xtd::to_string(const std::valarray<type_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
341 return __xtd_sequence_container_to_string(std::begin(values), std::end(values), fmt, loc);
342}
343
344template<typename type_t, typename allocator_t>
345[[nodiscard]] inline auto xtd::to_string(const std::vector<type_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
346 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
347}
348
349template<typename iterator_t>
350[[nodiscard]] inline auto __xtd_associative_container_to_string(const iterator_t& begin, const iterator_t& end, const xtd::string& fmt, const std::locale& loc) -> std::string {
351 return __xtd_iterator_to_string("{", begin, begin, end, fmt, loc) + "}";
352}
353
354template<typename key_t, typename value_t, typename compare_t, typename allocator_t>
355[[nodiscard]] inline auto xtd::to_string(const std::map<key_t, value_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
356 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
357}
358
359template<typename key_t, typename value_t, typename compare_t, typename allocator_t>
360[[nodiscard]] inline auto xtd::to_string(const std::multimap<key_t, value_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
361 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
362}
363
364template<typename key_t, typename compare_t, typename allocator_t>
365[[nodiscard]] inline auto xtd::to_string(const std::multiset<key_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
366 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
367}
368
369template<typename key_t, typename compare_t, typename allocator_t>
370[[nodiscard]] inline auto xtd::to_string(const std::set<key_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
371 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
372}
373
374template<typename key_t, typename value_t, typename compare_t, typename allocator_t>
375[[nodiscard]] inline auto xtd::to_string(const std::unordered_map<key_t, value_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
376 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
377}
378
379template<typename key_t, typename value_t, typename compare_t, typename allocator_t>
380[[nodiscard]] inline auto xtd::to_string(const std::unordered_multimap<key_t, value_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
381 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
382}
383
384template<typename key_t, typename compare_t, typename allocator_t>
385[[nodiscard]] inline auto xtd::to_string(const std::unordered_multiset<key_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
386 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
387}
388
389template<typename key_t, typename compare_t, typename allocator_t>
390[[nodiscard]] inline auto xtd::to_string(const std::unordered_set<key_t, compare_t, allocator_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
391 return __xtd_associative_container_to_string(values.begin(), values.end(), fmt, loc);
392}
393
394template<typename ...args_t>
395[[nodiscard]] inline auto xtd::to_string(const std::variant<args_t...>& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
396 if (value.valueless_by_exception()) return "(valueless_by_exception)";
397 return std::visit([&](auto && t){return xtd::to_string(t, fmt, loc);}, value);
398}
399
400template<typename type_t>
401[[nodiscard]] inline auto xtd::to_string(type_t value, const std::initializer_list<std::pair<type_t, xtd::string>>& il) -> xtd::string {
402 std::map<type_t, xtd::string, std::greater<type_t>> values;
403 for (const auto& item : il) values[item.first] = item.second;
404 return to_string(value, values);
405}
406
407template<>
408inline auto xtd::to_string(const std::filesystem::path& value, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
409 return to_string(value.string(), fmt, loc);
410}
411
412template<typename type_t>
413[[nodiscard]] inline auto xtd::to_string(const xtd::collections::generic::ienumerable<type_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
414 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
415}
416
417template<typename type_t>
418[[nodiscard]] inline auto xtd::to_string(const xtd::collections::generic::helpers::raw_array<type_t>& values, const xtd::string& fmt, const std::locale& loc) -> xtd::string {
419 return __xtd_sequence_container_to_string(values.begin(), values.end(), fmt, loc);
420}
421
422template<typename type_t, typename string_t>
423[[nodiscard]] inline auto xtd::to_string(type_t value, const std::map<type_t, string_t, std::greater<type_t>>& values) -> string_t {
424 auto it = values.find(value);
425 if (it != values.end()) return it->second;
426 string_t result;
427 long long rest = static_cast<long long>(value);
428 for (const auto& item : values) {
429 if (static_cast<long long>(item.first) != 0 && (rest & static_cast<long long>(item.first)) == static_cast<long long>(item.first)) {
430 if (!result.empty()) result = string_t {',', ' '} + result;
431 result = item.second + result;
432 rest -= static_cast<long long>(item.first);
433 }
434 }
435 if (!result.empty()) return result;
436 return to_string(static_cast<long long>(value), string_t {'G'}, std::locale());
437}
438
439template<typename type_t, typename string_t>
440[[nodiscard]] inline auto xtd::to_string(type_t value, const std::map<type_t, string_t>& values) -> string_t {
441 std::map<type_t, string_t, std::greater<type_t>> descending_values;
442 for (const auto& item : values) descending_values[item.first] = item.second;
443 return to_string(value, descending_values);
444}
445
446template<typename char_t, typename value_t>
447[[nodiscard]] inline auto __string_formatter(const std::basic_string<char_t>& fmt, value_t value, const std::locale& loc) -> std::basic_string<char_t> {
448 return __format_stringer<char_t>(value);
449}
450
451template<>
452[[nodiscard]] inline auto __format_stringer<char, bool&>(bool& value) -> std::string {
453 return xtd::to_string(value, "G", std::locale());
454}
455
456template<>
457[[nodiscard]] inline auto __format_stringer<char, xtd::sbyte&>(xtd::sbyte& value) -> std::string {
458 return xtd::to_string(value, "G", std::locale());
459}
460
461template<>
462[[nodiscard]] inline auto __format_stringer<char, const unsigned char&>(const unsigned char& value) -> std::string {
463 return xtd::to_string(value, "G", std::locale());
464}
465
466template<>
467[[nodiscard]] inline auto __format_stringer<char, unsigned char&>(unsigned char& value) -> std::string {
468 return xtd::to_string(value, "G", std::locale());
469}
470
471template<>
472[[nodiscard]] inline auto __format_stringer<char, short&>(short& value) -> std::string {
473 return xtd::to_string(value, "G", std::locale());
474}
475
476template<>
477[[nodiscard]] inline auto __format_stringer<char, unsigned short&>(unsigned short& value) -> std::string {
478 return xtd::to_string(value, "G", std::locale());
479}
480
481template<>
482[[nodiscard]] inline auto __format_stringer<char, int&>(int& value) -> std::string {
483 return xtd::to_string(value, "G", std::locale());
484}
485
486template<>
487[[nodiscard]] inline auto __format_stringer<char, unsigned int&>(unsigned int& value) -> std::string {
488 return xtd::to_string(value, "G", std::locale());
489}
490
491template<>
492[[nodiscard]] inline auto __format_stringer<char, long&>(long& value) -> std::string {
493 return xtd::to_string(value, "G", std::locale());
494}
495
496template<>
497[[nodiscard]] inline auto __format_stringer<char, unsigned long&>(unsigned long& value) -> std::string {
498 return xtd::to_string(value, "G", std::locale());
499}
500
501template<>
502[[nodiscard]] inline auto __format_stringer<char, long long&>(long long& value) -> std::string {
503 return xtd::to_string(value, "G", std::locale());
504}
505
506template<>
507[[nodiscard]] inline auto __format_stringer<char, unsigned long long&>(unsigned long long& value) -> std::string {
508 return xtd::to_string(value, "G", std::locale());
509}
510
511template<>
512[[nodiscard]] inline auto __format_stringer<char, float&>(float& value) -> std::string {
513 return xtd::to_string(value, "G", std::locale());
514}
515
516template<>
517[[nodiscard]] inline auto __format_stringer<char, double&>(double& value) -> std::string {
518 return xtd::to_string(value, "G", std::locale());
519}
520
521template<>
522[[nodiscard]] inline auto __format_stringer<char, long double&>(long double& value) -> std::string {
523 return xtd::to_string(value, "G", std::locale());
524}
525
526template<>
527[[nodiscard]] inline auto __format_stringer<char, std::chrono::system_clock::time_point&>(std::chrono::system_clock::time_point& value) -> std::string {
528 return xtd::to_string(value, "G", std::locale());
529}
530
531template<>
532[[nodiscard]] inline auto __format_stringer<char, std::tm&>(tm& value) -> std::string {
533 return xtd::to_string(value, "G", std::locale());
534}
535
536template<>
537[[nodiscard]] inline auto __format_stringer<char, xtd::wchar&>(xtd::wchar& value) -> std::string {
538 return xtd::to_string(value, "G", std::locale());
539}
540
541template<>
542[[nodiscard]] inline auto __format_stringer<char, xtd::char8&>(xtd::char8& value) -> std::string {
543 return xtd::to_string(value, "G", std::locale());
544}
545
546template<>
547[[nodiscard]] inline auto __format_stringer<char, xtd::char16&>(xtd::char16& value) -> std::string {
548 return xtd::to_string(value, "G", std::locale());
549}
550
551template<>
552[[nodiscard]] inline auto __format_stringer<char, xtd::char32&>(xtd::char32& value) -> std::string {
553 return xtd::to_string(value, "G", std::locale());
554}
555
556template<typename char_t, typename type_t, typename period_t = std::ratio<1>>
557auto operator <<(std::basic_ostream<char_t>& os, const std::chrono::duration<type_t, period_t>& value) -> std::basic_ostream<char_t>& {
558 return os << xtd::to_string(value, std::basic_string<char_t> {'G'}, std::locale());
559}
560
561template < class char_t, typename type_t >
562struct __enum_ostream__<char_t, type_t, std::false_type> {
563 auto to_stream(std::basic_ostream < char_t >& os, const type_t& value) noexcept -> std::basic_ostream<char_t>& {
564 //return os << value;
565 return os << xtd::to_string(value, std::basic_string < char_t > {}, std::locale {});
566 }
567};
Internal vector-like container used as a storage backend for xtd collections.
Definition raw_array.hpp:38
Exposes the enumerator, which supports a simple iteration over a collection of a specified type.
Definition ienumerable.hpp:40
static auto throws(xtd::helpers::exception_case exception_case, const source_location &location=source_location::current()) -> void
Throws an exption with specified exception case.
Definition iterable.hpp:15
Definition stream_insertable.hpp:13
Definition textual.hpp:16
generic::queue< xtd::any_object > queue
Represents a first-in, first-out collection of objects.
Definition queue.hpp:27
@ value
Represnets the constant operator precedence (42).
Definition operator_precedence.hpp:30
@ format
The format is not valid.
Definition exception_case.hpp:51
xtd::basic_string< char > string
Represents text as a sequence of UTF-8 code units.
Definition __string_definitions.hpp:43
char8_t char8
Represents a 8-bit unicode character.
Definition char8.hpp:26
std::int8_t sbyte
Represents a 8-bit signed integer.
Definition sbyte.hpp:23
wchar_t wchar
Represents a wide character.
Definition wchar.hpp:24
std::intmax_t intptr
Represent a pointer or a handle.
Definition intptr.hpp:23
char16_t char16
Represents a 16-bit unicode character.
Definition char16.hpp:26
xtd::sptr< type_t > ptr
The xtd::ptr object is a shared pointer.
Definition ptr.hpp:27
std::size_t usize
Represents an unsigned size of any object in bytes.
Definition usize.hpp:22
char32_t char32
Represents a 32-bit unicode character.
Definition char32.hpp:23
std::any any
Represents the any alias on std::any.
Definition any.hpp:24
std::remove_cvref_t< value_t > raw_type
Represents a raw type alias equivalent to std::remove_cvref_t<value_t>.
Definition raw_type.hpp:25
const xtd::collections::generic::helpers::wrap_pointer_iterator< pointer > iterator
Represents the iterator of read_only_span value type.
Definition read_only_span.hpp:75
auto first() const -> read_only_span< type_t, count >
Obtains a subspan consisting of the first count elements of the sequence.
Definition read_only_span.hpp:263
auto begin() const -> const_iterator
Returns an iterator to the beginning.
Definition read_only_span.hpp:200
auto to_string() const noexcept -> xtd::string override
Returns the string representation of this xtd::read_only_span <type_t> object.
Definition read_only_span.hpp:356
auto end() const -> const_iterator
Returns an iterator to the end.
Definition read_only_span.hpp:219
Contains xtd::stream_insertable concept.
Contains xtd::to_string methods.