From Jason Turner

[re.regex.const]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp6wqip6pf/{from.md → to.md} +0 -19
tmp/tmp6wqip6pf/{from.md → to.md} RENAMED
@@ -1,19 +0,0 @@
1
- ### `basic_regex` constants <a id="re.regex.const">[[re.regex.const]]</a>
2
-
3
- ``` cpp
4
- static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
5
- static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
6
- static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
7
- static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
8
- static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
9
- static constexpr regex_constants::syntax_option_type basic = regex_constants::basic;
10
- static constexpr regex_constants::syntax_option_type extended = regex_constants::extended;
11
- static constexpr regex_constants::syntax_option_type awk = regex_constants::awk;
12
- static constexpr regex_constants::syntax_option_type grep = regex_constants::grep;
13
- static constexpr regex_constants::syntax_option_type egrep = regex_constants::egrep;
14
- static constexpr regex_constants::syntax_option_type multiline = regex_constants::multiline;
15
- ```
16
-
17
- The static constant members are provided as synonyms for the constants
18
- declared in namespace `regex_constants`.
19
-