xtd - Reference Guide
0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
xtd.core
include
xtd
string_split_options.h
Go to the documentation of this file.
1
#pragma once
5
6
#include <ostream>
7
9
namespace
xtd
{
17
enum class
string_split_options
{
19
none
,
21
remove_empty_entries
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
}
xtd::string_split_options
string_split_options
Specifies whether applicable xtd::ustring::split method overloads include or omit empty substrings fr...
Definition:
string_split_options.h:17
xtd::string_split_options::none
@ none
The return value includes array elements that contain an empty string.
xtd::string_split_options::remove_empty_entries
@ remove_empty_entries
The return value does not include array elements that contain an empty string.
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition:
system_report.h:17
Generated on Mon Jul 17 2023 23:13:04 for xtd - Reference Guide by
Gammasoft
. All rights reserved.