From Jason Turner

[re.regex.const]

Diff to HTML by rtfpessoa

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