xtd - Reference Guide  0.1.2
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
string_split_options.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <ostream>
7
9namespace xtd {
19 none,
22 };
23
24 inline std::ostream& operator<<(std::ostream& os, xtd::string_split_options options) {
25 switch (options) {
26 case xtd::string_split_options::none: os << "none"; break;
27 case xtd::string_split_options::remove_empty_entries: os << "remove_empty_entries"; break;
28 }
29 return os;
30 }
31}
string_split_options
Specifies whether applicable xtd::ustring::split method overloads include or omit empty substrings fr...
Definition string_split_options.h:17
@ none
Indicates that no style elements, such as leading or trailing white space, thousands separators,...
@ none
The return value includes array elements that contain an empty string.
@ remove_empty_entries
The return value does not include array elements that contain an empty string.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition system_report.h:17