You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,6 +35,52 @@ The type of an allocator for managing storage.
68
35
69
36
The template class describes an object that controls a non-modifiable sequence of elements of type `sub_match<BidIt>` generated by a regular expression search. Each element points to the subsequence that matched the capture group corresponding to that element.
70
37
38
+
### Constructors
39
+
40
+
|Constructor|Description|
41
+
|-|-|
42
+
|[match_results](#match_results)|Constructs the object.|
43
+
44
+
### Typedefs
45
+
46
+
|Type name|Description|
47
+
|-|-|
48
+
|[allocator_type](#allocator_type)|The type of an allocator for managing storage.|
49
+
|[char_type](#char_type)|The type of an element.|
50
+
|[const_iterator](#const_iterator)|The const iterator type for submatches.|
51
+
|[const_reference](#const_reference)|The type of an element const reference.|
52
+
|[difference_type](#difference_type)|The type of an iterator difference.|
53
+
|[iterator](#iterator)|The iterator type for submatches.|
54
+
|[reference](#reference)|The type of an element reference.|
55
+
|[size_type](#size_type)|The type of a submatch count.|
56
+
|[string_type](#string_type)|The type of a string.|
57
+
|[value_type](#value_type)|The type of a submatch.|
58
+
59
+
### Member functions
60
+
61
+
|Member function|Description|
62
+
|-|-|
63
+
|[begin](#begin)|Designates beginning of submatch sequence.|
64
+
|[empty](#empty)|Tests for no submatches.|
65
+
|[end](#end)|Designates end of submatch sequence.|
66
+
|[format](#format)|Formats submatches.|
67
+
|[get_allocator](#get_allocator)|Returns the stored allocator.|
68
+
|[length](#length)|Returns length of a submatch.|
69
+
|[max_size](#max_size)|Gets largest number of submatches.|
70
+
|[position](#position)|Get starting offset of a subgroup.|
71
+
|[prefix](#prefix)|Gets sequence before first submatch.|
72
+
|[size](#size)|Counts number of submatches.|
73
+
|[str](#str)|Returns a submatch.|
74
+
|[suffix](#suffix)|Gets sequence after last submatch.|
75
+
|[swap](#swap)|Swaps two match_results objects.|
76
+
77
+
### Operators
78
+
79
+
|Operator|Description|
80
+
|-|-|
81
+
|[operator=](#op_eq)|Copy a match_results object.|
0 commit comments