autodoc.xml
230 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
<?xml version="1.0" standalone="yes"?>
<library-reference><header name="boost/xpressive/basic_regex.hpp">
<para>Contains the definition of the basic_regex<> class template and its associated helper functions. </para><namespace name="boost">
<namespace name="xpressive">
<function name="swap"><type>void</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="left"><paramtype><classname>basic_regex</classname>< BidiIter > &</paramtype><description><para>The first <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object. </para></description></parameter><parameter name="right"><paramtype><classname>basic_regex</classname>< BidiIter > &</paramtype><description><para>The second <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object. </para></description></parameter><purpose>Swaps the contents of two <classname alt="boost::xpressive::basic_regex">basic_regex</classname> objects. </purpose><description><para>
<note><para>This is a shallow swap that does not do reference tracking. If you embed a <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object by reference in another regular expression and then swap its contents with another <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object, the change will not be visible to the enclosing regular expression. It is done this way to ensure that swap() cannot throw. </para>
</note>
</para></description><throws><simpara>Will not throw.</simpara></throws></function>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/match_results.hpp">
<para>Contains the definition of the match_results type and associated helpers. The match_results type holds the results of a regex_match() or regex_search() operation. </para><namespace name="boost">
<namespace name="xpressive">
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_actions.hpp">
<para>Defines the syntax elements of xpressive's action expressions. </para><namespace name="boost">
<namespace name="xpressive">
<struct name="function"><template>
<template-type-parameter name="PolymorphicFunctionObject"/>
</template><purpose>A unary metafunction that turns an ordinary function object type into the type of a deferred function object for use in xpressive semantic actions. </purpose><description><para>Use <computeroutput><classname alt="boost::xpressive::function">xpressive::function</classname><></computeroutput> to turn an ordinary polymorphic function object type into a type that can be used to declare an object for use in xpressive semantic actions.</para><para>For example, the global object <computeroutput>xpressive::push_back</computeroutput> can be used to create deferred actions that have the effect of pushing a value into a container. It is defined with <computeroutput><classname alt="boost::xpressive::function">xpressive::function</classname><></computeroutput> as follows:<programlisting language="c++">xpressive::function<xpressive::op::push_back>::type const push_back = {};
</programlisting>where <computeroutput><classname alt="boost::xpressive::op::push_back">op::push_back</classname></computeroutput> is an ordinary function object that pushes its second argument into its first. Thus defined, <computeroutput>xpressive::push_back</computeroutput> can be used in semantic actions as follows:<programlisting language="c++">namespace xp = boost::xpressive;
using xp::_;
std::list<int> result;
std::string str("1 23 456 7890");
xp::sregex rx = (+_d)[ xp::push_back(xp::ref(result), xp::as<int>(_) ]
>> *(' ' >> (+_d)[ xp::push_back(xp::ref(result), xp::as<int>(_) ) ]);
</programlisting> </para></description><typedef name="type"><type>proto::terminal< PolymorphicFunctionObject >::type</type></typedef>
</struct><namespace name="op">
<struct name="at"><purpose><computeroutput>at</computeroutput> is a PolymorphicFunctionObject for indexing into a sequence </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Cont"/>
<template-type-parameter name="Idx"/>
</template><specialization><template-arg>This(Cont &</template-arg><template-arg>Idx)</template-arg></specialization><typedef name="type"><type>Cont::reference</type></typedef>
</struct-specialization><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Cont"/>
<template-type-parameter name="Idx"/>
</template><specialization><template-arg>This(Cont const &</template-arg><template-arg>Idx)</template-arg></specialization><typedef name="type"><type>Cont::const_reference</type></typedef>
</struct-specialization><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Cont"/>
<template-type-parameter name="Idx"/>
</template><specialization><template-arg>This(Cont</template-arg><template-arg>Idx)</template-arg></specialization><typedef name="type"><type>Cont::const_reference</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>Cont::reference</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="Idx"/>
</template><parameter name="c"><paramtype>Cont &</paramtype><description><para>The RandomAccessSequence to index into </para></description></parameter><parameter name="idx"><paramtype>Idx</paramtype><description><para>The index </para></description></parameter><description><para>
</para></description><requires><para><computeroutput>Cont</computeroutput> is a model of RandomAccessSequence </para>
</requires><returns><para><computeroutput>c[idx]</computeroutput> </para>
</returns></method>
<method name="operator()" cv="const"><type>Cont::const_reference</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="Idx"/>
</template><parameter name="c"><paramtype>Cont const &</paramtype></parameter><parameter name="idx"><paramtype>Idx</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
</method-group>
</struct><struct name="back"><purpose><computeroutput>back</computeroutput> is a PolymorphicFunctionObject for fetching the back element of a container. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Sequence"/>
</template><specialization><template-arg>This(Sequence)</template-arg></specialization><typedef name="sequence_type"><type>remove_reference< Sequence >::type</type></typedef>
<typedef name="type"><type>mpl::if_c< is_const< sequence_type >::<classname>value</classname>, typename sequence_type::const_reference, typename sequence_type::reference >::type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>back</classname>(Sequence &)>::type</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to fetch the back. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>seq.back()</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="first"><purpose><computeroutput>first</computeroutput> is a PolymorphicFunctionObject for fetching the first element of a pair. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Pair"/>
</template><specialization><template-arg>This(Pair)</template-arg></specialization><typedef name="type"><type>remove_reference< Pair >::type::first_type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>Pair::first_type</type><template>
<template-type-parameter name="Pair"/>
</template><parameter name="p"><paramtype>Pair const &</paramtype><description><para>The pair from which to fetch the first element. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>p.first</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="front"><purpose><computeroutput>front</computeroutput> is a PolymorphicFunctionObject for fetching the front element of a container. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Sequence"/>
</template><specialization><template-arg>This(Sequence)</template-arg></specialization><typedef name="sequence_type"><type>remove_reference< Sequence >::type</type></typedef>
<typedef name="type"><type>mpl::if_c< is_const< sequence_type >::<classname>value</classname>, typename sequence_type::const_reference, typename sequence_type::reference >::type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>front</classname>(Sequence &)>::type</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to fetch the front. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>seq.front()</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="insert"><purpose><computeroutput>insert</computeroutput> is a PolymorphicFunctionObject for inserting a value or a sequence of values into a sequence container, an associative container, or a string. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template><typedef name="type"><type><emphasis>unspecified</emphasis></type></typedef>
</struct><method-group name="public member functions">
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>insert</classname>(Cont &, A0 const &)>::type</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="A0"/>
</template><parameter name="cont"><paramtype>Cont &</paramtype></parameter><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>insert</classname>(Cont &, A0 const &, A1 const &)>::type</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
</template><parameter name="cont"><paramtype>Cont &</paramtype></parameter><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><parameter name="a1"><paramtype>A1 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>insert</classname>(Cont &, A0 const &, A1 const &, A2 const &)>::type</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
<template-type-parameter name="A2"/>
</template><parameter name="cont"><paramtype>Cont &</paramtype></parameter><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><parameter name="a1"><paramtype>A1 const &</paramtype></parameter><parameter name="a2"><paramtype>A2 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>insert</classname>(Cont &, A0 const &, A1 const &, A2 const &, A3 const &)>::type</type><template>
<template-type-parameter name="Cont"/>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
<template-type-parameter name="A2"/>
<template-type-parameter name="A3"/>
</template><parameter name="cont"><paramtype>Cont &</paramtype><description><para>The container into which to insert the element(s) </para></description></parameter><parameter name="a0"><paramtype>A0 const &</paramtype><description><para>A value, iterator, or count </para></description></parameter><parameter name="a1"><paramtype>A1 const &</paramtype><description><para>A value, iterator, string, count, or character </para></description></parameter><parameter name="a2"><paramtype>A2 const &</paramtype><description><para>A value, iterator, or count </para></description></parameter><parameter name="a3"><paramtype>A3 const &</paramtype><description><para>A count </para></description></parameter><description><para>
</para></description><returns><para><itemizedlist>
<listitem><para>For the form <computeroutput>insert()(cont, a0)</computeroutput>, return <computeroutput>cont.insert(a0)</computeroutput>. </para>
</listitem>
<listitem><para>For the form <computeroutput>insert()(cont, a0, a1)</computeroutput>, return <computeroutput>cont.insert(a0, a1)</computeroutput>. </para>
</listitem>
<listitem><para>For the form <computeroutput>insert()(cont, a0, a1, a2)</computeroutput>, return <computeroutput>cont.insert(a0, a1, a2)</computeroutput>. </para>
</listitem>
<listitem><para>For the form <computeroutput>insert()(cont, a0, a1, a2, a3)</computeroutput>, return <computeroutput>cont.insert(a0, a1, a2, a3)</computeroutput>. </para>
</listitem>
</itemizedlist>
</para>
</returns></method>
</method-group>
</struct><struct name="length"><purpose><computeroutput>length</computeroutput> is a PolymorphicFunctionObject for fetching the length of <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput>. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Sub"/>
</template><specialization><template-arg>This(Sub)</template-arg></specialization><typedef name="type"><type>remove_reference< Sub >::type::difference_type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>Sub::difference_type</type><template>
<template-type-parameter name="Sub"/>
</template><parameter name="sub"><paramtype>Sub const &</paramtype><description><para>The <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> object. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>sub.length()</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="make_pair"><purpose><computeroutput><classname alt="boost::xpressive::op::make_pair">make_pair</classname></computeroutput> is a PolymorphicFunctionObject for building a <computeroutput><classname alt="std::pair">std::pair</classname></computeroutput> out of two parameters </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="First"/>
<template-type-parameter name="Second"/>
</template><specialization><template-arg>This(First</template-arg><template-arg>Second)</template-arg></specialization><typedef name="first_type"><purpose>For exposition only. </purpose><type>decay< First >::type</type></typedef>
<typedef name="second_type"><purpose>For exposition only. </purpose><type>decay< Second >::type</type></typedef>
<typedef name="type"><type><classname>std::pair</classname>< first_type, second_type ></type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type><classname>std::pair</classname>< First, Second ></type><template>
<template-type-parameter name="First"/>
<template-type-parameter name="Second"/>
</template><parameter name="first"><paramtype>First const &</paramtype><description><para>The first element of the pair </para></description></parameter><parameter name="second"><paramtype>Second const &</paramtype><description><para>The second element of the pair </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>std::make_pair(first, second)</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="matched"><purpose><computeroutput>matched</computeroutput> is a PolymorphicFunctionObject for assessing whether a <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> object matched or not. </purpose><typedef name="result_type"><type>bool</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>bool</type><template>
<template-type-parameter name="Sub"/>
</template><parameter name="sub"><paramtype>Sub const &</paramtype><description><para>The <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> object. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>sub.matched</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="pop"><purpose><computeroutput>pop</computeroutput> is a PolymorphicFunctionObject for popping an element from a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to pop. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.pop()</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="pop_back"><purpose><computeroutput><classname alt="boost::xpressive::op::pop_back">pop_back</classname></computeroutput> is a PolymorphicFunctionObject for popping an element from the back of a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to pop. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.pop_back()</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="pop_front"><purpose><computeroutput><classname alt="boost::xpressive::op::pop_front">pop_front</classname></computeroutput> is a PolymorphicFunctionObject for popping an element from the front of a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to pop. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.pop_front()</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="push"><purpose><computeroutput>push</computeroutput> is a PolymorphicFunctionObject for pushing an element into a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
<template-type-parameter name="Value"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence into which the value should be pushed. </para></description></parameter><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to push into the sequence. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.push(val)</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="push_back"><purpose><computeroutput><classname alt="boost::xpressive::op::push_back">push_back</classname></computeroutput> is a PolymorphicFunctionObject for pushing an element into the back of a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
<template-type-parameter name="Value"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence into which the value should be pushed. </para></description></parameter><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to push into the sequence. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.push_back(val)</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="push_front"><purpose><computeroutput><classname alt="boost::xpressive::op::push_front">push_front</classname></computeroutput> is a PolymorphicFunctionObject for pushing an element into the front of a container. </purpose><typedef name="result_type"><type>void</type></typedef>
<method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="Sequence"/>
<template-type-parameter name="Value"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence into which the value should be pushed. </para></description></parameter><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to push into the sequence. </para></description></parameter><purpose>Equivalent to <computeroutput>seq.push_front(val)</computeroutput>. </purpose><description><para>
</para></description><returns><para><computeroutput>void</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="second"><purpose><computeroutput>second</computeroutput> is a PolymorphicFunctionObject for fetching the second element of a pair. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Pair"/>
</template><specialization><template-arg>This(Pair)</template-arg></specialization><typedef name="type"><type>remove_reference< Pair >::type::second_type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>Pair::second_type</type><template>
<template-type-parameter name="Pair"/>
</template><parameter name="p"><paramtype>Pair const &</paramtype><description><para>The pair from which to fetch the second element. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>p.second</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="str"><purpose><computeroutput>str</computeroutput> is a PolymorphicFunctionObject for turning a <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> into an equivalent <computeroutput>std::string</computeroutput>. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Sub"/>
</template><specialization><template-arg>This(Sub)</template-arg></specialization><typedef name="type"><type>remove_reference< Sub >::type::string_type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>Sub::string_type</type><template>
<template-type-parameter name="Sub"/>
</template><parameter name="sub"><paramtype>Sub const &</paramtype><description><para>The <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> object. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>sub.str()</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="top"><purpose><computeroutput>top</computeroutput> is a PolymorphicFunctionObject for fetching the top element of a stack. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Sequence"/>
</template><specialization><template-arg>This(Sequence)</template-arg></specialization><typedef name="sequence_type"><type>remove_reference< Sequence >::type</type></typedef>
<typedef name="type"><type>mpl::if_c< is_const< sequence_type >::<classname>value</classname>, typename sequence_type::value_type const &, typename sequence_type::value_type & >::type</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type><classname>result</classname>< <classname>top</classname>(Sequence &)>::type</type><template>
<template-type-parameter name="Sequence"/>
</template><parameter name="seq"><paramtype>Sequence &</paramtype><description><para>The sequence from which to fetch the top. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>seq.top()</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="unwrap_reference"><purpose><computeroutput><classname alt="boost::xpressive::op::unwrap_reference">unwrap_reference</classname></computeroutput> is a PolymorphicFunctionObject for unwrapping a <computeroutput>boost::reference_wrapper<></computeroutput>. </purpose><struct name="result"><template>
<template-type-parameter name="Sig"/>
</template></struct><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Ref"/>
</template><specialization><template-arg>This(Ref &)</template-arg></specialization><typedef name="type"><type>boost::unwrap_reference< Ref >::type &</type></typedef>
</struct-specialization><struct-specialization name="result"><template>
<template-type-parameter name="This"/>
<template-type-parameter name="Ref"/>
</template><specialization><template-arg>This(Ref)</template-arg></specialization><typedef name="type"><type>boost::unwrap_reference< Ref >::type &</type></typedef>
</struct-specialization><method-group name="public member functions">
<method name="operator()" cv="const"><type>T &</type><template>
<template-type-parameter name="T"/>
</template><parameter name="r"><paramtype>boost::reference_wrapper< T ></paramtype><description><para>The <computeroutput>boost::reference_wrapper<T></computeroutput> to unwrap. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>static_cast<T &>(r)</computeroutput> </para>
</returns></method>
</method-group>
</struct></namespace>
<data-member name="at"><type><classname>function</classname>< <classname>op::at</classname> >::type const</type><purpose><computeroutput>at</computeroutput> is a lazy PolymorphicFunctionObject for indexing into a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="push"><type><classname>function</classname>< <classname>op::push</classname> >::type const</type><purpose><computeroutput>push</computeroutput> is a lazy PolymorphicFunctionObject for pushing a value into a container in an xpressive semantic action. </purpose></data-member>
<data-member name="push_back"><type><classname>function</classname>< <classname>op::push_back</classname> >::type const</type><purpose><computeroutput>push_back</computeroutput> is a lazy PolymorphicFunctionObject for pushing a value into a container in an xpressive semantic action. </purpose></data-member>
<data-member name="push_front"><type><classname>function</classname>< <classname>op::push_front</classname> >::type const</type><purpose><computeroutput>push_front</computeroutput> is a lazy PolymorphicFunctionObject for pushing a value into a container in an xpressive semantic action. </purpose></data-member>
<data-member name="pop"><type><classname>function</classname>< <classname>op::pop</classname> >::type const</type><purpose><computeroutput>pop</computeroutput> is a lazy PolymorphicFunctionObject for popping the top element from a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="pop_back"><type><classname>function</classname>< <classname>op::pop_back</classname> >::type const</type><purpose><computeroutput>pop_back</computeroutput> is a lazy PolymorphicFunctionObject for popping the back element from a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="pop_front"><type><classname>function</classname>< <classname>op::pop_front</classname> >::type const</type><purpose><computeroutput>pop_front</computeroutput> is a lazy PolymorphicFunctionObject for popping the front element from a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="top"><type><classname>function</classname>< <classname>op::top</classname> >::type const</type><purpose><computeroutput>top</computeroutput> is a lazy PolymorphicFunctionObject for accessing the top element from a stack in an xpressive semantic action. </purpose></data-member>
<data-member name="back"><type><classname>function</classname>< <classname>op::back</classname> >::type const</type><purpose><computeroutput>back</computeroutput> is a lazy PolymorphicFunctionObject for fetching the back element of a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="front"><type><classname>function</classname>< <classname>op::front</classname> >::type const</type><purpose><computeroutput>front</computeroutput> is a lazy PolymorphicFunctionObject for fetching the front element of a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="first"><type><classname>function</classname>< <classname>op::first</classname> >::type const</type><purpose><computeroutput>first</computeroutput> is a lazy PolymorphicFunctionObject for accessing the first element of a <computeroutput><classname alt="std::pair">std::pair</classname><></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="second"><type><classname>function</classname>< <classname>op::second</classname> >::type const</type><purpose><computeroutput>second</computeroutput> is a lazy PolymorphicFunctionObject for accessing the second element of a <computeroutput><classname alt="std::pair">std::pair</classname><></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="matched"><type><classname>function</classname>< <classname>op::matched</classname> >::type const</type><purpose><computeroutput>matched</computeroutput> is a lazy PolymorphicFunctionObject for accessing the <computeroutput>matched</computeroutput> member of a <computeroutput><classname alt="boost::xpressive::sub_match">xpressive::sub_match</classname><></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="length"><type><classname>function</classname>< <classname>op::length</classname> >::type const</type><purpose><computeroutput>length</computeroutput> is a lazy PolymorphicFunctionObject for computing the length of a <computeroutput><classname alt="boost::xpressive::sub_match">xpressive::sub_match</classname><></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="str"><type><classname>function</classname>< <classname>op::str</classname> >::type const</type><purpose><computeroutput>str</computeroutput> is a lazy PolymorphicFunctionObject for converting a <computeroutput><classname alt="boost::xpressive::sub_match">xpressive::sub_match</classname><></computeroutput> to a <computeroutput>std::basic_string<></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="insert"><type><classname>function</classname>< <classname>op::insert</classname> >::type const</type><purpose><computeroutput>insert</computeroutput> is a lazy PolymorphicFunctionObject for inserting a value or a range of values into a sequence in an xpressive semantic action. </purpose></data-member>
<data-member name="make_pair"><type><classname>function</classname>< <classname>op::make_pair</classname> >::type const</type><purpose><computeroutput>make_pair</computeroutput> is a lazy PolymorphicFunctionObject for making a <computeroutput><classname alt="std::pair">std::pair</classname><></computeroutput> in an xpressive semantic action. </purpose></data-member>
<data-member name="unwrap_reference"><type><classname>function</classname>< <classname>op::unwrap_reference</classname> >::type const</type><purpose><computeroutput>unwrap_reference</computeroutput> is a lazy PolymorphicFunctionObject for unwrapping a <computeroutput>boost::reference_wrapper<></computeroutput> in an xpressive semantic action. </purpose></data-member>
<function name="as"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"><purpose><para>The type to which to lexically cast the parameter. </para></purpose></template-type-parameter>
<template-type-parameter name="A"/>
</template><parameter name="a"><paramtype>A const &</paramtype><description><para>The lazy value to lexically cast. </para></description></parameter><purpose><computeroutput>as()</computeroutput> is a lazy funtion for lexically casting a parameter to a different type. </purpose><description><para>
</para></description><returns><para>A lazy object that, when evaluated, lexically casts its argument to the desired type. </para>
</returns></function>
<function name="static_cast_"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"><purpose><para>The type to which to statically cast the parameter. </para></purpose></template-type-parameter>
<template-type-parameter name="A"/>
</template><parameter name="a"><paramtype>A const &</paramtype><description><para>The lazy value to statically cast. </para></description></parameter><purpose><computeroutput>static_cast_</computeroutput> is a lazy funtion for statically casting a parameter to a different type. </purpose><description><para>
</para></description><returns><para>A lazy object that, when evaluated, statically casts its argument to the desired type. </para>
</returns></function>
<function name="dynamic_cast_"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"><purpose><para>The type to which to dynamically cast the parameter. </para></purpose></template-type-parameter>
<template-type-parameter name="A"/>
</template><parameter name="a"><paramtype>A const &</paramtype><description><para>The lazy value to dynamically cast. </para></description></parameter><purpose><computeroutput>dynamic_cast_</computeroutput> is a lazy funtion for dynamically casting a parameter to a different type. </purpose><description><para>
</para></description><returns><para>A lazy object that, when evaluated, dynamically casts its argument to the desired type. </para>
</returns></function>
<function name="const_cast_"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"><purpose><para>The type to which to const-cast the parameter. </para></purpose></template-type-parameter>
<template-type-parameter name="A"/>
</template><parameter name="a"><paramtype>A const &</paramtype><description><para>The lazy value to const-cast. </para></description></parameter><purpose><computeroutput>dynamic_cast_</computeroutput> is a lazy funtion for const-casting a parameter to a different type. </purpose><description><para>
</para></description><returns><para>A lazy object that, when evaluated, const-casts its argument to the desired type. </para>
</returns></function>
<function name="val"><type><classname>value</classname>< T > const</type><template>
<template-type-parameter name="T"/>
</template><parameter name="t"><paramtype>T const &</paramtype></parameter><purpose>Helper for constructing <computeroutput>value<></computeroutput> objects. </purpose><description><para>
</para></description><returns><para><computeroutput>value<T>(t)</computeroutput> </para>
</returns></function>
<function name="ref"><type><classname>reference</classname>< T > const</type><template>
<template-type-parameter name="T"/>
</template><parameter name="t"><paramtype>T &</paramtype></parameter><purpose>Helper for constructing <computeroutput>reference<></computeroutput> objects. </purpose><description><para>
</para></description><returns><para><computeroutput>reference<T>(t)</computeroutput> </para>
</returns></function>
<function name="cref"><type><classname>reference</classname>< T const > const</type><template>
<template-type-parameter name="T"/>
</template><parameter name="t"><paramtype>T const &</paramtype></parameter><purpose>Helper for constructing <computeroutput>reference<></computeroutput> objects that store a reference to const. </purpose><description><para>
</para></description><returns><para><computeroutput>reference<T const>(t)</computeroutput> </para>
</returns></function>
<function name="check"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"/>
</template><parameter name="t"><paramtype>T const &</paramtype><description><para>The UnaryPredicate object or Boolean semantic action.</para></description></parameter><purpose>For adding user-defined assertions to your regular expressions. </purpose><description><para>
A <link linkend="boost_xpressive.user_s_guide.semantic_actions_and_user_defined_assertions.user_defined_assertions">user-defined assertion</link> is a kind of semantic action that evaluates a Boolean lambda and, if it evaluates to false, causes the match to fail at that location in the string. This will cause backtracking, so the match may ultimately succeed.</para><para>To use <computeroutput>check()</computeroutput> to specify a user-defined assertion in a regex, use the following syntax:<programlisting language="c++">sregex s = (_d >> _d)[check( XXX )]; // XXX is a custom assertion
</programlisting>The assertion is evaluated with a <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> object that delineates what part of the string matched the sub-expression to which the assertion was attached.</para><para><computeroutput>check()</computeroutput> can be used with an ordinary predicate that takes a <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> object as follows:<programlisting language="c++">// A predicate that is true IFF a sub-match is
// either 3 or 6 characters long.
struct three_or_six
{
bool operator()(ssub_match const &sub) const
{
return sub.length() == 3 || sub.length() == 6;
}
};
// match words of 3 characters or 6 characters.
sregex rx = (bow >> +_w >> eow)[ check(three_or_six()) ] ;
</programlisting>Alternately, <computeroutput>check()</computeroutput> can be used to define inline custom assertions with the same syntax as is used to define semantic actions. The following code is equivalent to above:<programlisting language="c++">// match words of 3 characters or 6 characters.
sregex rx = (bow >> +_w >> eow)[ check(length(_)==3 || length(_)==6) ] ;
</programlisting>Within a custom assertion, <computeroutput>_</computeroutput> is a placeholder for the <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> That delineates the part of the string matched by the sub-expression to which the custom assertion was attached. </para></description></function>
<function name="let"><type><emphasis>unspecified</emphasis></type><template>
<template-nontype-parameter name="ArgBindings"><type>typename...</type></template-nontype-parameter>
</template><parameter name="args"><paramtype>ArgBindings const &...</paramtype><description><para>A set of argument bindings, where each argument binding is an assignment expression, the left hand side of which must be an instance of <computeroutput>placeholder<X></computeroutput> for some <computeroutput>X</computeroutput>, and the right hand side is an lvalue of type <computeroutput>X</computeroutput>.</para></description></parameter><purpose>For binding local variables to placeholders in semantic actions when constructing a <computeroutput><classname alt="boost::xpressive::regex_iterator">regex_iterator</classname></computeroutput> or a <computeroutput><classname alt="boost::xpressive::regex_token_iterator">regex_token_iterator</classname></computeroutput>. </purpose><description><para>
<computeroutput>xpressive::let()</computeroutput> serves the same purpose as <computeroutput>match_results::let()</computeroutput>; that is, it binds a placeholder to a local value. The purpose is to allow a regex with semantic actions to be defined that refers to objects that do not yet exist. Rather than referring directly to an object, a semantic action can refer to a placeholder, and the value of the placeholder can be specified later with a <emphasis>let expression</emphasis>. The <emphasis>let expression</emphasis> created with <computeroutput>let()</computeroutput> is passed to the constructor of either <computeroutput><classname alt="boost::xpressive::regex_iterator">regex_iterator</classname></computeroutput> or <computeroutput><classname alt="boost::xpressive::regex_token_iterator">regex_token_iterator</classname></computeroutput>.</para><para>See the section <link linkend="boost_xpressive.user_s_guide.semantic_actions_and_user_defined_assertions.referring_to_non_local_variables"> "Referring to Non-Local Variables"</link> in the Users' Guide for more discussion.</para><para><emphasis>Example:@code</emphasis> // Define a placeholder for a map object: placeholder<std::map<std::string, int> > _map;</para><para>// Match a word and an integer, separated by =>, // and then stuff the result into a std::map<> sregex pair = ( (s1= +_w) >> "=>" >> (s2= +_d) ) [ _map[s1] = as<int>(s2) ];</para><para>// The string to parse std::string str("aaa=>1 bbb=>23 ccc=>456");</para><para>// Here is the actual map to fill in: std::map<std::string, int> result;</para><para>// Create a <classname alt="boost::xpressive::regex_iterator">regex_iterator</classname> to find all the matches sregex_iterator it(str.begin(), str.end(), pair, let(_map=result)); sregex_iterator end;</para><para>// step through all the matches, and fill in // the result map while(it != end) ++it;</para><para>std::cout << result["aaa"] << '<sbr/>
'; std::cout << result["bbb"] << '<sbr/>
'; std::cout << result["ccc"] << '<sbr/>
'; \endcodeThe above code displays:<programlisting language="c++">1
23
456
</programlisting> </para></description></function>
<function name="construct"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="T"><purpose><para>The type of object to construct. </para></purpose></template-type-parameter>
<template-nontype-parameter name="Args"><type>typename ...</type></template-nontype-parameter>
</template><parameter name="args"><paramtype>Args const &...</paramtype><description><para>The arguments to the constructor. </para></description></parameter><purpose>A lazy funtion for constructing objects objects of the specified type. </purpose><description><para>
</para></description><returns><para>A lazy object that, when evaluated, returns <computeroutput>T(xs...)</computeroutput>, where <computeroutput>xs...</computeroutput> is the result of evaluating the lazy arguments <computeroutput>args...</computeroutput>. </para>
</returns></function>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_algorithms.hpp">
<para>Contains the regex_match(), regex_search() and regex_replace() algorithms. </para><namespace name="boost">
<namespace name="xpressive">
<overloaded-function name="regex_match"><signature><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the sequence. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the sequence. </para></description></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype><description><para>The <computeroutput><classname alt="boost::xpressive::match_results">match_results</classname></computeroutput> struct into which the sub_matches will be written </para></description></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regular expression object to use </para></description></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default><description><para>Optional match flags, used to control how the expression is matched against the sequence. (See <computeroutput>match_flag_type</computeroutput>.) </para></description></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype></parameter><parameter name="end"><paramtype>BidiIter</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="Char"/>
</template><parameter name="begin"><paramtype>Char *</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< Char * > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange &</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange const &</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="Char"/>
</template><parameter name="begin"><paramtype>Char *</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange const &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><purpose>See if a regex matches a sequence from beginning to end. </purpose><description><para>Determines whether there is an exact match between the regular expression <computeroutput>re</computeroutput>, and all of the sequence <computeroutput>[begin, end)</computeroutput>.</para><para>
</para></description><requires><para>Type <computeroutput>BidiIter</computeroutput> meets the requirements of a Bidirectional Iterator (24.1.4). </para>
</requires><requires><para><computeroutput>[begin,end)</computeroutput> denotes a valid iterator range. </para>
</requires><returns><para><computeroutput>true</computeroutput> if a match is found, <computeroutput>false</computeroutput> otherwise </para>
</returns><throws><simpara><classname>regex_error</classname> on stack exhaustion </simpara></throws></overloaded-function>
<overloaded-function name="regex_search"><signature><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the sequence </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the sequence </para></description></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype><description><para>The <computeroutput><classname alt="boost::xpressive::match_results">match_results</classname></computeroutput> struct into which the sub_matches will be written </para></description></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regular expression object to use </para></description></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default><description><para>Optional match flags, used to control how the expression is matched against the sequence. (See <computeroutput>match_flag_type</computeroutput>.) </para></description></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype></parameter><parameter name="end"><paramtype>BidiIter</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="Char"/>
</template><parameter name="begin"><paramtype>Char *</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< Char * > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange &</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange const &</paramtype></parameter><parameter name="what"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="Char"/>
</template><parameter name="begin"><paramtype>Char *</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>bool</type><template>
<template-type-parameter name="BidiRange"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rng"><paramtype>BidiRange const &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><purpose>Determines whether there is some sub-sequence within <computeroutput>[begin,end)</computeroutput> that matches the regular expression <computeroutput>re</computeroutput>. </purpose><description><para>Determines whether there is some sub-sequence within <computeroutput>[begin,end)</computeroutput> that matches the regular expression <computeroutput>re</computeroutput>.</para><para>
</para></description><requires><para>Type <computeroutput>BidiIter</computeroutput> meets the requirements of a Bidirectional Iterator (24.1.4). </para>
</requires><requires><para><computeroutput>[begin,end)</computeroutput> denotes a valid iterator range. </para>
</requires><returns><para><computeroutput>true</computeroutput> if a match is found, <computeroutput>false</computeroutput> otherwise </para>
</returns><throws><simpara><classname>regex_error</classname> on stack exhaustion </simpara></throws></overloaded-function>
<overloaded-function name="regex_replace"><signature><type>OutIter</type><template>
<template-type-parameter name="OutIter"/>
<template-type-parameter name="BidiIter"/>
<template-type-parameter name="Formatter"/>
</template><parameter name="out"><paramtype>OutIter</paramtype><description><para>An output iterator into which the output sequence is written. </para></description></parameter><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the input sequence. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the input sequence. </para></description></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regular expression object to use. </para></description></parameter><parameter name="format"><paramtype>Formatter const &</paramtype><description><para>The format string used to format the replacement sequence, or a formatter function, function object, or expression. </para></description></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default><description><para>Optional match flags, used to control how the expression is matched against the sequence. (See <computeroutput>match_flag_type</computeroutput>.) </para></description></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>OutIter</type><template>
<template-type-parameter name="OutIter"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="out"><paramtype>OutIter</paramtype></parameter><parameter name="begin"><paramtype>BidiIter</paramtype></parameter><parameter name="end"><paramtype>BidiIter</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="format"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><signature><type>BidiContainer</type><template>
<template-type-parameter name="BidiContainer"/>
<template-type-parameter name="BidiIter"/>
<template-type-parameter name="Formatter"/>
</template><parameter name="str"><paramtype>BidiContainer &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="format"><paramtype>Formatter const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>BidiContainer</type><template>
<template-type-parameter name="BidiContainer"/>
<template-type-parameter name="BidiIter"/>
<template-type-parameter name="Formatter"/>
</template><parameter name="str"><paramtype>BidiContainer const &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="format"><paramtype>Formatter const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>std::basic_string< typename remove_const< Char >::type ></type><template>
<template-type-parameter name="Char"/>
<template-type-parameter name="Formatter"/>
</template><parameter name="str"><paramtype>Char *</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="format"><paramtype>Formatter const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>BidiContainer</type><template>
<template-type-parameter name="BidiContainer"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="str"><paramtype>BidiContainer &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="format"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>BidiContainer</type><template>
<template-type-parameter name="BidiContainer"/>
<template-type-parameter name="BidiIter"/>
</template><parameter name="str"><paramtype>BidiContainer const &</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="format"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter></signature><signature><type>std::basic_string< typename remove_const< Char >::type ></type><template>
<template-type-parameter name="Char"/>
</template><parameter name="str"><paramtype>Char *</paramtype></parameter><parameter name="re"><paramtype><classname>basic_regex</classname>< Char * > const &</paramtype></parameter><parameter name="format"><paramtype>typename add_const< Char >::type *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></signature><purpose>Build an output sequence given an input sequence, a regex, and a format string or a formatter object, function, or expression. </purpose><description><para>Constructs a <computeroutput><classname alt="boost::xpressive::regex_iterator">regex_iterator</classname></computeroutput> object: <computeroutput><classname alt="boost::xpressive::regex_iterator">regex_iterator</classname>< BidiIter > i(begin, end, re, flags)</computeroutput>, and uses <computeroutput>i</computeroutput> to enumerate through all of the matches m of type <computeroutput><classname alt="boost::xpressive::match_results">match_results</classname>< BidiIter ></computeroutput> that occur within the sequence <computeroutput>[begin, end)</computeroutput>. If no such matches are found and <computeroutput>!(flags & format_no_copy)</computeroutput> then calls <computeroutput>std::copy(begin, end, out)</computeroutput>. Otherwise, for each match found, if <computeroutput>!(flags & format_no_copy)</computeroutput> calls <computeroutput>std::copy(m.prefix().first, m.prefix().second, out)</computeroutput>, and then calls <computeroutput>m.format(out, format, flags)</computeroutput>. Finally if <computeroutput>!(flags & format_no_copy)</computeroutput> calls <computeroutput>std::copy(last_m.suffix().first, last_m.suffix().second, out)</computeroutput> where <computeroutput>last_m</computeroutput> is a copy of the last match found.</para><para>If <computeroutput>flags & format_first_only</computeroutput> is non-zero then only the first match found is replaced.</para><para>
</para></description><requires><para>Type <computeroutput>BidiIter</computeroutput> meets the requirements of a Bidirectional Iterator (24.1.4). </para>
</requires><requires><para>Type <computeroutput>OutIter</computeroutput> meets the requirements of an Output Iterator (24.1.2). </para>
</requires><requires><para>Type <computeroutput>Formatter</computeroutput> models <computeroutput>ForwardRange</computeroutput>, <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter> ></computeroutput>, <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutIter></computeroutput>, or <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutIter, regex_constants::match_flag_type></computeroutput>; or else it is a null-terminated format string, or an expression template representing a formatter lambda expression. </para>
</requires><requires><para><computeroutput>[begin,end)</computeroutput> denotes a valid iterator range. </para>
</requires><returns><para>The value of the output iterator after the output sequence has been written to it. </para>
</returns><throws><simpara><classname>regex_error</classname> on stack exhaustion or invalid format string. </simpara></throws></overloaded-function>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_compiler.hpp">
<para>Contains the definition of regex_compiler, a factory for building regex objects from strings. </para><namespace name="boost">
<namespace name="xpressive">
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_constants.hpp">
<para>Contains definitions for the syntax_option_type, match_flag_type and error_type enumerations. </para><namespace name="boost">
<namespace name="xpressive">
<namespace name="regex_constants">
<enum name="syntax_option_type"><enumvalue name="ECMAScript"><default>= 0</default><description><para>Specifies that the grammar recognized by the regular expression engine uses its normal semantics: that is the same as that given in the ECMA-262, ECMAScript Language Specification, Chapter 15 part 10, RegExp (Regular Expression) Objects (FWD.1). </para></description></enumvalue><enumvalue name="icase"><default>= 1 << 1</default><description><para>Specifies that matching of regular expressions against a character container sequence shall be performed without regard to case. </para></description></enumvalue><enumvalue name="nosubs"><default>= 1 << 2</default><description><para>Specifies that when a regular expression is matched against a character container sequence, then no sub-expression matches are to be stored in the supplied <classname alt="boost::xpressive::match_results">match_results</classname> structure. </para></description></enumvalue><enumvalue name="optimize"><default>= 1 << 3</default><description><para>Specifies that the regular expression engine should pay more attention to the speed with which regular expressions are matched, and less to the speed with which regular expression objects are constructed. Otherwise it has no detectable effect on the program output. </para></description></enumvalue><enumvalue name="collate"><default>= 1 << 4</default><description><para>Specifies that character ranges of the form "[a-b]" should be locale sensitive. </para></description></enumvalue><enumvalue name="single_line"><default>= 1 << 10</default><description><para>Specifies that the ^ and $ metacharacters DO NOT match at internal line breaks. Note that this is the opposite of the perl default. It is the inverse of perl's /m (multi-line) modifier. </para></description></enumvalue><enumvalue name="not_dot_null"><default>= 1 << 11</default><description><para>Specifies that the . metacharacter does not match the null character \0. </para></description></enumvalue><enumvalue name="not_dot_newline"><default>= 1 << 12</default><description><para>Specifies that the . metacharacter does not match the newline character \n. </para></description></enumvalue><enumvalue name="ignore_white_space"><default>= 1 << 13</default><description><para>Specifies that non-escaped white-space is not significant. </para></description></enumvalue><description><para>Flags used to customize the regex syntax </para></description></enum>
<enum name="match_flag_type"><enumvalue name="match_default"><default>= 0</default><description><para>Specifies that matching of regular expressions proceeds without any modification of the normal rules used in ECMA-262, ECMAScript Language Specification, Chapter 15 part 10, RegExp (Regular Expression) Objects (FWD.1) </para></description></enumvalue><enumvalue name="match_not_bol"><default>= 1 << 1</default><description><para>Specifies that the expression "^" should not be matched against the sub-sequence [first,first). </para></description></enumvalue><enumvalue name="match_not_eol"><default>= 1 << 2</default><description><para>Specifies that the expression "\$" should not be matched against the sub-sequence [last,last). </para></description></enumvalue><enumvalue name="match_not_bow"><default>= 1 << 3</default><description><para>Specifies that the expression "\\b" should not be matched against the sub-sequence [first,first). </para></description></enumvalue><enumvalue name="match_not_eow"><default>= 1 << 4</default><description><para>Specifies that the expression "\\b" should not be matched against the sub-sequence [last,last). </para></description></enumvalue><enumvalue name="match_any"><default>= 1 << 7</default><description><para>Specifies that if more than one match is possible then any match is an acceptable result. </para></description></enumvalue><enumvalue name="match_not_null"><default>= 1 << 8</default><description><para>Specifies that the expression can not be matched against an empty sequence. </para></description></enumvalue><enumvalue name="match_continuous"><default>= 1 << 10</default><description><para>Specifies that the expression must match a sub-sequence that begins at first. </para></description></enumvalue><enumvalue name="match_partial"><default>= 1 << 11</default><description><para>Specifies that if no match can be found, then it is acceptable to return a match [from, last) where from != last, if there exists some sequence of characters [from,to) of which [from,last) is a prefix, and which would result in a full match. </para></description></enumvalue><enumvalue name="match_prev_avail"><default>= 1 << 12</default><description><para>Specifies that –first is a valid iterator position, when this flag is set then the flags match_not_bol and match_not_bow are ignored by the regular expression algorithms (RE.7) and iterators (RE.8). </para></description></enumvalue><enumvalue name="format_default"><default>= 0</default><description><para>Specifies that when a regular expression match is to be replaced by a new string, that the new string is constructed using the rules used by the ECMAScript replace function in ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace. (FWD.1). In addition during search and replace operations then all non-overlapping occurrences of the regular expression are located and replaced, and sections of the input that did not match the expression, are copied unchanged to the output string. </para></description></enumvalue><enumvalue name="format_sed"><default>= 1 << 13</default><description><para>Specifies that when a regular expression match is to be replaced by a new string, that the new string is constructed using the rules used by the Unix sed utility in IEEE Std 1003.1-2001, Portable Operating SystemInterface (POSIX), Shells and Utilities. </para></description></enumvalue><enumvalue name="format_perl"><default>= 1 << 14</default><description><para>Specifies that when a regular expression match is to be replaced by a new string, that the new string is constructed using an implementation defined superset of the rules used by the ECMAScript replace function in ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace (FWD.1). </para></description></enumvalue><enumvalue name="format_no_copy"><default>= 1 << 15</default><description><para>When specified during a search and replace operation, then sections of the character container sequence being searched that do match the regular expression, are not copied to the output string. </para></description></enumvalue><enumvalue name="format_first_only"><default>= 1 << 16</default><description><para>When specified during a search and replace operation, then only the first occurrence of the regular expression is replaced. </para></description></enumvalue><enumvalue name="format_literal"><default>= 1 << 17</default><description><para>Treat the format string as a literal. </para></description></enumvalue><enumvalue name="format_all"><default>= 1 << 18</default><description><para>Specifies that all syntax extensions are enabled, including conditional (?ddexpression1:expression2) replacements. </para></description></enumvalue><description><para>Flags used to customize the behavior of the regex algorithms </para></description></enum>
<enum name="error_type"><enumvalue name="error_collate"><description><para>The expression contained an invalid collating element name. </para></description></enumvalue><enumvalue name="error_ctype"><description><para>The expression contained an invalid character class name. </para></description></enumvalue><enumvalue name="error_escape"><description><para>The expression contained an invalid escaped character, or a trailing escape. </para></description></enumvalue><enumvalue name="error_subreg"><description><para>The expression contained an invalid back-reference. </para></description></enumvalue><enumvalue name="error_brack"><description><para>The expression contained mismatched [ and ]. </para></description></enumvalue><enumvalue name="error_paren"><description><para>The expression contained mismatched ( and ). </para></description></enumvalue><enumvalue name="error_brace"><description><para>The expression contained mismatched { and }. </para></description></enumvalue><enumvalue name="error_badbrace"><description><para>The expression contained an invalid range in a {} expression. </para></description></enumvalue><enumvalue name="error_range"><description><para>The expression contained an invalid character range, for example [b-a]. </para></description></enumvalue><enumvalue name="error_space"><description><para>There was insufficient memory to convert the expression into a finite state machine. </para></description></enumvalue><enumvalue name="error_badrepeat"><description><para>One of *?+{ was not preceded by a valid regular expression. </para></description></enumvalue><enumvalue name="error_complexity"><description><para>The complexity of an attempted match against a regular expression exceeded a pre-set level. </para></description></enumvalue><enumvalue name="error_stack"><description><para>There was insufficient memory to determine whether the regular expression could match the specified character sequence. </para></description></enumvalue><enumvalue name="error_badref"><description><para>An nested regex is uninitialized. </para></description></enumvalue><enumvalue name="error_badmark"><description><para>An invalid use of a named capture. </para></description></enumvalue><enumvalue name="error_badlookbehind"><description><para>An attempt to create a variable-width look-behind assertion was detected. </para></description></enumvalue><enumvalue name="error_badrule"><description><para>An invalid use of a rule was detected. </para></description></enumvalue><enumvalue name="error_badarg"><description><para>An argument to an action was unbound. </para></description></enumvalue><enumvalue name="error_badattr"><description><para>Tried to read from an uninitialized attribute. </para></description></enumvalue><enumvalue name="error_internal"><description><para>An internal error has occurred. </para></description></enumvalue><description><para>Error codes used by the <classname alt="boost::xpressive::regex_error">regex_error</classname> type </para></description></enum>
</namespace>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_error.hpp">
<para>Contains the definition of the regex_error exception class. </para><namespace name="boost">
<namespace name="xpressive">
<struct name="regex_error"><inherit access="public">std::runtime_error</inherit><inherit access="public">exception</inherit><purpose>The class <classname alt="boost::xpressive::regex_error">regex_error</classname> defines the type of objects thrown as exceptions to report errors during the conversion from a string representing a regular expression to a finite state machine. </purpose><method-group name="public member functions">
<method name="code" cv="const"><type>regex_constants::error_type</type><description><para>Accessor for the error_type value
</para></description><returns><para>the error_type code passed to the constructor </para>
</returns><throws><simpara>Will not throw.</simpara></throws></method>
</method-group>
<constructor specifiers="explicit"><parameter name="code"><paramtype>regex_constants::error_type</paramtype><description><para>The error_type this <classname alt="boost::xpressive::regex_error">regex_error</classname> represents. </para></description></parameter><parameter name="str"><paramtype>char const *</paramtype><default>""</default><description><para>The message string of this <classname alt="boost::xpressive::regex_error">regex_error</classname>. </para></description></parameter><description><para>Constructs an object of class <classname alt="boost::xpressive::regex_error">regex_error</classname>.
</para></description><postconditions><para>code() == code </para>
</postconditions></constructor>
<destructor><description><para>Destructor for class <classname alt="boost::xpressive::regex_error">regex_error</classname>
</para></description><throws><simpara>Will not throw.</simpara></throws></destructor>
</struct>
</namespace>
</namespace>
<macro name="BOOST_XPR_ENSURE_" kind="functionlike"><macro-parameter name="pred"/><macro-parameter name="code"/><macro-parameter name="msg"/></macro>
</header>
<header name="boost/xpressive/regex_iterator.hpp">
<para>Contains the definition of the regex_iterator type, an STL-compatible iterator for stepping through all the matches in a sequence. </para><namespace name="boost">
<namespace name="xpressive">
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_primitives.hpp">
<para>Contains the syntax elements for writing static regular expressions. </para><namespace name="boost">
<namespace name="xpressive">
<struct name="mark_tag"><purpose>Sub-match placeholder type, used to create named captures in static regexes. </purpose><description><para><computeroutput><classname alt="boost::xpressive::mark_tag">mark_tag</classname></computeroutput> is the type of the global sub-match placeholders <computeroutput>s0</computeroutput>, <computeroutput>s1</computeroutput>, etc.. You can use the <computeroutput><classname alt="boost::xpressive::mark_tag">mark_tag</classname></computeroutput> type to create your own sub-match placeholders with more meaningful names. This is roughly equivalent to the "named capture" feature of dynamic regular expressions.</para><para>To create a named sub-match placeholder, initialize it with a unique integer. The integer must only be unique within the regex in which the placeholder is used. Then you can use it within static regexes to created sub-matches by assigning a sub-expression to it, or to refer back to already created sub-matches.</para><para><programlisting language="c++">mark_tag number(1); // "number" is now equivalent to "s1"
// Match a number, followed by a space and the same number again
sregex rx = (number = +_d) >> ' ' >> number;
</programlisting></para><para>After a successful <computeroutput>regex_match()</computeroutput> or <computeroutput>regex_search()</computeroutput>, the sub-match placeholder can be used to index into the <computeroutput><classname alt="boost::xpressive::match_results">match_results</classname><></computeroutput> object to retrieve the corresponding sub-match. </para></description><method-group name="private static functions">
<method name="make_tag" specifiers="static"><type><emphasis>unspecified</emphasis></type><parameter name="mark_nbr"><paramtype>int</paramtype></parameter></method>
</method-group>
<method-group name="public member functions">
</method-group>
<constructor><parameter name="mark_nbr"><paramtype>int</paramtype><description><para>An integer that uniquely identifies this <computeroutput><classname alt="boost::xpressive::mark_tag">mark_tag</classname></computeroutput> within the static regexes in which this <computeroutput><classname alt="boost::xpressive::mark_tag">mark_tag</classname></computeroutput> will be used. </para></description></parameter><purpose>Initialize a <classname alt="boost::xpressive::mark_tag">mark_tag</classname> placeholder. </purpose><description><para>
</para></description><requires><para><computeroutput>mark_nbr > 0</computeroutput> </para>
</requires></constructor>
</struct><data-member name="inf"><type>unsigned int const</type><purpose>For infinite repetition of a sub-expression. </purpose><description><para>Magic value used with the repeat<>() function template to specify an unbounded repeat. Use as: repeat<17, inf>('a'). The equivalent in perl is /a{17,}/. </para></description></data-member>
<data-member name="nil"><type><emphasis>unspecified</emphasis></type><purpose>Successfully matches nothing. </purpose><description><para>Successfully matches a zero-width sequence. nil always succeeds and never consumes any characters. </para></description></data-member>
<data-member name="alnum"><type><emphasis>unspecified</emphasis></type><purpose>Matches an alpha-numeric character. </purpose><description><para>The regex traits are used to determine which characters are alpha-numeric. To match any character that is not alpha-numeric, use ~alnum.</para><para><note><para>alnum is equivalent to /[[:alnum:]]/ in perl. ~alnum is equivalent to /[[:^alnum:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="alpha"><type><emphasis>unspecified</emphasis></type><purpose>Matches an alphabetic character. </purpose><description><para>The regex traits are used to determine which characters are alphabetic. To match any character that is not alphabetic, use ~alpha.</para><para><note><para>alpha is equivalent to /[[:alpha:]]/ in perl. ~alpha is equivalent to /[[:^alpha:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="blank"><type><emphasis>unspecified</emphasis></type><purpose>Matches a blank (horizonal white-space) character. </purpose><description><para>The regex traits are used to determine which characters are blank characters. To match any character that is not blank, use ~blank.</para><para><note><para>blank is equivalent to /[[:blank:]]/ in perl. ~blank is equivalent to /[[:^blank:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="cntrl"><type><emphasis>unspecified</emphasis></type><purpose>Matches a control character. </purpose><description><para>The regex traits are used to determine which characters are control characters. To match any character that is not a control character, use ~cntrl.</para><para><note><para>cntrl is equivalent to /[[:cntrl:]]/ in perl. ~cntrl is equivalent to /[[:^cntrl:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="digit"><type><emphasis>unspecified</emphasis></type><purpose>Matches a digit character. </purpose><description><para>The regex traits are used to determine which characters are digits. To match any character that is not a digit, use ~digit.</para><para><note><para>digit is equivalent to /[[:digit:]]/ in perl. ~digit is equivalent to /[[:^digit:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="graph"><type><emphasis>unspecified</emphasis></type><purpose>Matches a graph character. </purpose><description><para>The regex traits are used to determine which characters are graphable. To match any character that is not graphable, use ~graph.</para><para><note><para>graph is equivalent to /[[:graph:]]/ in perl. ~graph is equivalent to /[[:^graph:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="lower"><type><emphasis>unspecified</emphasis></type><purpose>Matches a lower-case character. </purpose><description><para>The regex traits are used to determine which characters are lower-case. To match any character that is not a lower-case character, use ~lower.</para><para><note><para>lower is equivalent to /[[:lower:]]/ in perl. ~lower is equivalent to /[[:^lower:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="print"><type><emphasis>unspecified</emphasis></type><purpose>Matches a printable character. </purpose><description><para>The regex traits are used to determine which characters are printable. To match any character that is not printable, use ~print.</para><para><note><para>print is equivalent to /[[:print:]]/ in perl. ~print is equivalent to /[[:^print:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="punct"><type><emphasis>unspecified</emphasis></type><purpose>Matches a punctuation character. </purpose><description><para>The regex traits are used to determine which characters are punctuation. To match any character that is not punctuation, use ~punct.</para><para><note><para>punct is equivalent to /[[:punct:]]/ in perl. ~punct is equivalent to /[[:^punct:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="space"><type><emphasis>unspecified</emphasis></type><purpose>Matches a space character. </purpose><description><para>The regex traits are used to determine which characters are space characters. To match any character that is not white-space, use ~space.</para><para><note><para>space is equivalent to /[[:space:]]/ in perl. ~space is equivalent to /[[:^space:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="upper"><type><emphasis>unspecified</emphasis></type><purpose>Matches an upper-case character. </purpose><description><para>The regex traits are used to determine which characters are upper-case. To match any character that is not upper-case, use ~upper.</para><para><note><para>upper is equivalent to /[[:upper:]]/ in perl. ~upper is equivalent to /[[:^upper:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="xdigit"><type><emphasis>unspecified</emphasis></type><purpose>Matches a hexadecimal digit character. </purpose><description><para>The regex traits are used to determine which characters are hex digits. To match any character that is not a hex digit, use ~xdigit.</para><para><note><para>xdigit is equivalent to /[[:xdigit:]]/ in perl. ~xdigit is equivalent to /[[:^xdigit:]]/ in perl. </para>
</note>
</para></description></data-member>
<data-member name="bos"><type><emphasis>unspecified</emphasis></type><purpose>Beginning of sequence assertion. </purpose><description><para>For the character sequence [begin, end), 'bos' matches the zero-width sub-sequence [begin, begin). </para></description></data-member>
<data-member name="eos"><type><emphasis>unspecified</emphasis></type><purpose>End of sequence assertion. </purpose><description><para>For the character sequence [begin, end), 'eos' matches the zero-width sub-sequence [end, end).</para><para><note><para>Unlike the perl end of sequence assertion $, 'eos' will not match at the position [end-1, end-1) if *(end-1) is '\n'. To get that behavior, use (!_n >> eos). </para>
</note>
</para></description></data-member>
<data-member name="bol"><type><emphasis>unspecified</emphasis></type><purpose>Beginning of line assertion. </purpose><description><para>'bol' matches the zero-width sub-sequence immediately following a logical newline sequence. The regex traits is used to determine what constitutes a logical newline sequence. </para></description></data-member>
<data-member name="eol"><type><emphasis>unspecified</emphasis></type><purpose>End of line assertion. </purpose><description><para>'eol' matches the zero-width sub-sequence immediately preceeding a logical newline sequence. The regex traits is used to determine what constitutes a logical newline sequence. </para></description></data-member>
<data-member name="bow"><type><emphasis>unspecified</emphasis></type><purpose>Beginning of word assertion. </purpose><description><para>'bow' matches the zero-width sub-sequence immediately following a non-word character and preceeding a word character. The regex traits are used to determine what constitutes a word character. </para></description></data-member>
<data-member name="eow"><type><emphasis>unspecified</emphasis></type><purpose>End of word assertion. </purpose><description><para>'eow' matches the zero-width sub-sequence immediately following a word character and preceeding a non-word character. The regex traits are used to determine what constitutes a word character. </para></description></data-member>
<data-member name="_b"><type><emphasis>unspecified</emphasis></type><purpose>Word boundary assertion. </purpose><description><para>'_b' matches the zero-width sub-sequence at the beginning or the end of a word. It is equivalent to (bow | eow). The regex traits are used to determine what constitutes a word character. To match a non-word boundary, use ~_b.</para><para><note><para>_b is like \b in perl. ~_b is like \B in perl. </para>
</note>
</para></description></data-member>
<data-member name="_w"><type><emphasis>unspecified</emphasis></type><purpose>Matches a word character. </purpose><description><para>'_w' matches a single word character. The regex traits are used to determine which characters are word characters. Use ~_w to match a character that is not a word character.</para><para><note><para>_w is like \w in perl. ~_w is like \W in perl. </para>
</note>
</para></description></data-member>
<data-member name="_d"><type><emphasis>unspecified</emphasis></type><purpose>Matches a digit character. </purpose><description><para>'_d' matches a single digit character. The regex traits are used to determine which characters are digits. Use ~_d to match a character that is not a digit character.</para><para><note><para>_d is like \d in perl. ~_d is like \D in perl. </para>
</note>
</para></description></data-member>
<data-member name="_s"><type><emphasis>unspecified</emphasis></type><purpose>Matches a space character. </purpose><description><para>'_s' matches a single space character. The regex traits are used to determine which characters are space characters. Use ~_s to match a character that is not a space character.</para><para><note><para>_s is like \s in perl. ~_s is like \S in perl. </para>
</note>
</para></description></data-member>
<data-member name="_n"><type>proto::terminal< char >::type const</type><purpose>Matches a literal newline character, '\n'. </purpose><description><para>'_n' matches a single newline character, '\n'. Use ~_n to match a character that is not a newline.</para><para><note><para>~_n is like '.' in perl without the /s modifier. </para>
</note>
</para></description></data-member>
<data-member name="_ln"><type><emphasis>unspecified</emphasis></type><purpose>Matches a logical newline sequence. </purpose><description><para>'_ln' matches a logical newline sequence. This can be any character in the line separator class, as determined by the regex traits, or the '\r\n' sequence. For the purpose of back-tracking, '\r\n' is treated as a unit. To match any one character that is not a logical newline, use ~_ln. </para></description></data-member>
<data-member name="_"><type><emphasis>unspecified</emphasis></type><purpose>Matches any one character. </purpose><description><para>Match any character, similar to '.' in perl syntax with the /s modifier. '_' matches any one character, including the newline.</para><para><note><para>To match any character except the newline, use ~_n </para>
</note>
</para></description></data-member>
<data-member name="self"><type><emphasis>unspecified</emphasis></type><purpose>Reference to the current regex object. </purpose><description><para>Useful when constructing recursive regular expression objects. The 'self' identifier is a short-hand for the current regex object. For instance, sregex rx = '(' >> (self | nil) >> ')'; will create a regex object that matches balanced parens such as "((()))". </para></description></data-member>
<data-member name="set"><type><emphasis>unspecified</emphasis></type><purpose>Used to create character sets. </purpose><description><para>There are two ways to create character sets with the 'set' identifier. The easiest is to create a comma-separated list of the characters in the set, as in (set= 'a','b','c'). This set will match 'a', 'b', or 'c'. The other way is to define the set as an argument to the set subscript operator. For instance, set[ 'a' | range('b','c') | digit ] will match an 'a', 'b', 'c' or a digit character.</para><para>To complement a set, apply the '~' operator. For instance, ~(set= 'a','b','c') will match any character that is not an 'a', 'b', or 'c'.</para><para>Sets can be composed of other, possibly complemented, sets. For instance, set[ ~digit | ~(set= 'a','b','c') ]. </para></description></data-member>
<data-member name="s0"><type><classname>mark_tag</classname> const</type><purpose>Sub-match placeholder, like $& in Perl. </purpose></data-member>
<data-member name="s1"><type><classname>mark_tag</classname> const</type><purpose>Sub-match placeholder, like $1 in perl. </purpose><description><para>To create a sub-match, assign a sub-expression to the sub-match placeholder. For instance, (s1= _) will match any one character and remember which character was matched in the 1st sub-match. Later in the pattern, you can refer back to the sub-match. For instance, (s1= _) >> s1 will match any character, and then match the same character again.</para><para>After a successful regex_match() or regex_search(), the sub-match placeholders can be used to index into the <classname alt="boost::xpressive::match_results">match_results</classname><> object to retrieve the Nth sub-match. </para></description></data-member>
<data-member name="s2"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s3"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s4"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s5"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s6"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s7"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s8"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="s9"><type><classname>mark_tag</classname> const</type></data-member>
<data-member name="a1"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a2"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a3"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a4"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a5"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a6"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a7"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a8"><type><emphasis>unspecified</emphasis></type></data-member>
<data-member name="a9"><type><emphasis>unspecified</emphasis></type></data-member>
<function name="icase"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype></parameter><purpose>Makes a sub-expression case-insensitive. </purpose><description><para>Use icase() to make a sub-expression case-insensitive. For instance, "foo" >> icase(set['b'] >> "ar") will match "foo" exactly followed by "bar" irrespective of case. </para></description></function>
<function name="as_xpr"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Literal"/>
</template><parameter name="literal"><paramtype>Literal const &</paramtype></parameter><purpose>Makes a literal into a regular expression. </purpose><description><para>Use as_xpr() to turn a literal into a regular expression. For instance, "foo" >> "bar" will not compile because both operands to the right-shift operator are const char*, and no such operator exists. Use as_xpr("foo") >> "bar" instead.</para><para>You can use as_xpr() with character literals in addition to string literals. For instance, as_xpr('a') will match an 'a'. You can also complement a character literal, as with ~as_xpr('a'). This will match any one character that is not an 'a'. </para></description></function>
<function name="by_ref"><type>proto::terminal< reference_wrapper< <classname>basic_regex</classname>< BidiIter > const > >::type const</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object to embed by reference. </para></description></parameter><purpose>Embed a regex object by reference. </purpose><description><para>
</para></description></function>
<function name="range"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Char"/>
</template><parameter name="ch_min"><paramtype>Char</paramtype><description><para>The lower end of the range to match. </para></description></parameter><parameter name="ch_max"><paramtype>Char</paramtype><description><para>The upper end of the range to match. </para></description></parameter><purpose>Match a range of characters. </purpose><description><para>Match any character in the range [ch_min, ch_max].</para><para>
</para></description></function>
<function name="optional"><type>proto::result_of::make_expr< proto::tag::logical_not, proto::default_domain, Expr const & >::type const</type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The sub-expression to make optional. </para></description></parameter><purpose>Make a sub-expression optional. Equivalent to !as_xpr(expr). </purpose><description><para>
</para></description></function>
<overloaded-function name="repeat"><signature><type><emphasis>unspecified</emphasis></type><template>
<template-nontype-parameter name="Min"><type>unsigned int</type></template-nontype-parameter>
<template-nontype-parameter name="Max"><type>unsigned int</type></template-nontype-parameter>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The sub-expression to repeat. </para></description></parameter></signature><signature><type><emphasis>unspecified</emphasis></type><template>
<template-nontype-parameter name="Count"><type>unsigned int</type></template-nontype-parameter>
<template-type-parameter name="Expr2"/>
</template><parameter name="expr2"><paramtype>Expr2 const &</paramtype></parameter></signature><purpose>Repeat a sub-expression multiple times. </purpose><description><para>There are two forms of the repeat<>() function template. To match a sub-expression N times, use repeat<N>(expr). To match a sub-expression from M to N times, use repeat<M,N>(expr).</para><para>The repeat<>() function creates a greedy quantifier. To make the quantifier non-greedy, apply the unary minus operator, as in -repeat<M,N>(expr).</para><para>
</para></description></overloaded-function>
<function name="keep"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The sub-expression to modify. </para></description></parameter><purpose>Create an independent sub-expression. </purpose><description><para>Turn off back-tracking for a sub-expression. Any branches or repeats within the sub-expression will match only one way, and no other alternatives are tried.</para><para><note><para>keep(expr) is equivalent to the perl (?>...) extension.</para>
</note>
</para></description></function>
<function name="before"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The sub-expression to put in the look-ahead assertion. </para></description></parameter><purpose>Look-ahead assertion. </purpose><description><para>before(expr) succeeds if the expr sub-expression would match at the current position in the sequence, but expr is not included in the match. For instance, before("foo") succeeds if we are before a "foo". Look-ahead assertions can be negated with the bit-compliment operator.</para><para><note><para>before(expr) is equivalent to the perl (?=...) extension. ~before(expr) is a negative look-ahead assertion, equivalent to the perl (?!...) extension.</para>
</note>
</para></description></function>
<function name="after"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The sub-expression to put in the look-ahead assertion.</para></description></parameter><purpose>Look-behind assertion. </purpose><description><para>after(expr) succeeds if the expr sub-expression would match at the current position minus N in the sequence, where N is the width of expr. expr is not included in the match. For instance, after("foo") succeeds if we are after a "foo". Look-behind assertions can be negated with the bit-complement operator.</para><para><note><para>after(expr) is equivalent to the perl (?<=...) extension. ~after(expr) is a negative look-behind assertion, equivalent to the perl (?<!...) extension.</para>
</note>
</para></description><requires><para>expr cannot match a variable number of characters. </para>
</requires></function>
<function name="imbue"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Locale"/>
</template><parameter name="loc"><paramtype>Locale const &</paramtype><description><para>The std::locale or regex traits object. </para></description></parameter><purpose>Specify a regex traits or a std::locale. </purpose><description><para>imbue() instructs the regex engine to use the specified traits or locale when matching the regex. The entire expression must use the same traits/locale. For instance, the following specifies a locale for use with a regex: std::locale loc; sregex rx = imbue(loc)(+digit);</para><para>
</para></description></function>
<function name="skip"><type><emphasis>unspecified</emphasis></type><template>
<template-type-parameter name="Skip"/>
</template><parameter name="skip"><paramtype>Skip const &</paramtype><description><para>A regex that specifies which characters to skip. </para></description></parameter><purpose>Specify which characters to skip when matching a regex. </purpose><description><para><computeroutput>skip()</computeroutput> instructs the regex engine to skip certain characters when matching a regex. It is most useful for writing regexes that ignore whitespace. For instance, the following specifies a regex that skips whitespace and punctuation:</para><para><programlisting language="c++">// A sentence is one or more words separated by whitespace
// and punctuation.
sregex word = +alpha;
sregex sentence = skip(set[_s | punct])( +word );
</programlisting></para><para>The way it works in the above example is to insert <computeroutput>keep(*set[_s | punct])</computeroutput> before each primitive within the regex. A "primitive" includes terminals like strings, character sets and nested regexes. A final <computeroutput>*set[_s | punct]</computeroutput> is added to the end of the regex. The regex <computeroutput>sentence</computeroutput> specified above is equivalent to the following:</para><para><programlisting language="c++">sregex sentence = +( keep(*set[_s | punct]) >> word )
>> *set[_s | punct];
</programlisting></para><para><note><para>Skipping does not affect how nested regexes are handled because they are treated atomically. String literals are also treated atomically; that is, no skipping is done within a string literal. So <computeroutput>skip(_s)("this that")</computeroutput> is not the same as <computeroutput>skip(_s)("this" >> as_xpr("that"))</computeroutput>. The first will only match when there is only one space between "this" and "that". The second will skip any and all whitespace between "this" and "that".</para>
</note>
</para></description></function>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_token_iterator.hpp">
<para>Contains the definition of regex_token_iterator, and STL-compatible iterator for tokenizing a string using a regular expression. </para><namespace name="boost">
<namespace name="xpressive">
</namespace>
</namespace>
</header>
<header name="boost/xpressive/regex_traits.hpp">
<para>Includes the C regex traits or the CPP regex traits header file depending on the BOOST_XPRESSIVE_USE_C_TRAITS macro. </para><namespace name="boost">
<namespace name="xpressive">
<struct name="regex_traits_version_1_tag"><description><para>Tag used to denote that a traits class conforms to the version 1 traits interface. </para></description></struct><struct name="regex_traits_version_2_tag"><inherit access="public">boost::xpressive::regex_traits_version_1_tag</inherit><description><para>Tag used to denote that a traits class conforms to the version 2 traits interface. </para></description></struct>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/sub_match.hpp">
<para>Contains the definition of the class template sub_match<> and associated helper functions </para><namespace name="boost">
<namespace name="xpressive">
<overloaded-function name="range_begin"><signature><type>BidiIter</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="sub"><paramtype><classname>sub_match</classname>< BidiIter > &</paramtype><description><para>the <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> object denoting the range </para></description></parameter></signature><signature><type>BidiIter</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="sub"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></signature><purpose><computeroutput>range_begin()</computeroutput> to make <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> a valid range </purpose><description><para>
</para></description><requires><para><computeroutput>sub.first</computeroutput> is not singular </para>
</requires><returns><para><computeroutput>sub.first</computeroutput> </para>
</returns></overloaded-function>
<overloaded-function name="range_end"><signature><type>BidiIter</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="sub"><paramtype><classname>sub_match</classname>< BidiIter > &</paramtype><description><para>the <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> object denoting the range </para></description></parameter></signature><signature><type>BidiIter</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="sub"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></signature><purpose><computeroutput>range_end()</computeroutput> to make <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> a valid range </purpose><description><para>
</para></description><requires><para><computeroutput>sub.second</computeroutput> is not singular </para>
</requires><returns><para><computeroutput>sub.second</computeroutput> </para>
</returns></overloaded-function>
<function name="operator<<"><type>std::basic_ostream< Char, Traits > &</type><template>
<template-type-parameter name="BidiIter"/>
<template-type-parameter name="Char"/>
<template-type-parameter name="Traits"/>
</template><parameter name="sout"><paramtype>std::basic_ostream< Char, Traits > &</paramtype><description><para>output stream. </para></description></parameter><parameter name="sub"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype><description><para><classname alt="boost::xpressive::sub_match">sub_match</classname> object to be written to the stream. </para></description></parameter><purpose>insertion operator for sending sub-matches to ostreams </purpose><description><para>
</para></description><returns><para>sout << sub.str() </para>
</returns></function>
<function name="operator=="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator!="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator=="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator!="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator=="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator!="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator<"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator>"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator>="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator<="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator=="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator!="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator>="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator<="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator=="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator!="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator<"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator>"><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator>="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator<="><type>bool</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename iterator_value< BidiIter >::type const *</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter><parameter name="rhs"><paramtype>typename <classname>sub_match</classname>< BidiIter >::string_type const &</paramtype></parameter></function>
<function name="operator+"><type><classname>sub_match</classname>< BidiIter >::string_type</type><template>
<template-type-parameter name="BidiIter"/>
</template><parameter name="lhs"><paramtype>typename <classname>sub_match</classname>< BidiIter >::string_type const &</paramtype></parameter><parameter name="rhs"><paramtype><classname>sub_match</classname>< BidiIter > const &</paramtype></parameter></function>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/traits/c_regex_traits.hpp">
<para>Contains the definition of the c_regex_traits<> template, which is a wrapper for the C locale functions that can be used to customize the behavior of static and dynamic regexes. </para><namespace name="boost">
<namespace name="xpressive">
<struct-specialization name="has_fold_case"><template>
</template><specialization><template-arg>c_regex_traits< char ></template-arg></specialization><inherit access="public">true_</inherit></struct-specialization>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/traits/cpp_regex_traits.hpp">
<para>Contains the definition of the cpp_regex_traits<> template, which is a wrapper for std::locale that can be used to customize the behavior of static and dynamic regexes. </para><namespace name="boost">
<namespace name="xpressive">
<struct-specialization name="has_fold_case"><template>
</template><specialization><template-arg>cpp_regex_traits< char ></template-arg></specialization><inherit access="public">true_</inherit></struct-specialization>
</namespace>
</namespace>
</header>
<header name="boost/xpressive/traits/null_regex_traits.hpp">
<para>Contains the definition of the null_regex_traits<> template, which is a stub regex traits implementation that can be used by static and dynamic regexes for searching non-character data. </para><namespace name="boost">
<namespace name="xpressive">
</namespace>
</namespace>
</header>
<header name="boost/xpressive/xpressive.hpp">
<para>Includes all of xpressive including support for both static and dynamic regular expressions. </para></header>
<header name="boost/xpressive/xpressive_dynamic.hpp">
<para>Includes everything you need to write and use dynamic regular expressions. </para></header>
<header name="boost/xpressive/xpressive_fwd.hpp">
<para>Forward declarations for all of xpressive's public data types. </para><namespace name="boost">
<namespace name="xpressive">
<struct name="basic_regex"><template>
<template-type-parameter name="BidiIter"/>
</template><purpose>Class template <classname alt="boost::xpressive::basic_regex">basic_regex</classname><> is a class for holding a compiled regular expression. </purpose><method-group name="public member functions">
<method name="mark_count" cv="const"><type>std::size_t</type><description><para>Returns the count of capturing sub-expressions in this regular expression </para></description></method>
<method name="regex_id" cv="const"><type>regex_id_type</type><description><para>Returns a token which uniquely identifies this regular expression. </para></description></method>
<method name="swap"><type>void</type><parameter name="that"><paramtype><classname>basic_regex</classname>< BidiIter > &</paramtype><description><para>The other <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object. </para></description></parameter><description><para>Swaps the contents of this <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object with another.</para><para>
<note><para>This is a shallow swap that does not do reference tracking. If you embed a <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object by reference in another regular expression and then swap its contents with another <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object, the change will not be visible to the enclosing regular expression. It is done this way to ensure that swap() cannot throw. </para>
</note>
</para></description><throws><simpara>Will not throw.</simpara></throws></method>
</method-group>
<constructor><description><para>
</para></description><postconditions><para>regex_id() == 0 </para>
</postconditions><postconditions><para>mark_count() == 0 </para>
</postconditions></constructor>
<constructor><parameter name="that"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object to copy. </para></description></parameter><description><para>
</para></description><postconditions><para>regex_id() == that.regex_id() </para>
</postconditions><postconditions><para>mark_count() == that.mark_count() </para>
</postconditions></constructor>
<copy-assignment><type><classname>basic_regex</classname>< BidiIter > &</type><parameter name="that"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object to copy. </para></description></parameter><description><para>
</para></description><postconditions><para>regex_id() == that.regex_id() </para>
</postconditions><postconditions><para>mark_count() == that.mark_count() </para>
</postconditions><returns><para>*this </para>
</returns></copy-assignment>
<constructor><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The static regular expression </para></description></parameter><description><para>Construct from a static regular expression.</para><para>
</para></description><requires><para>Expr is the type of a static regular expression. </para>
</requires><postconditions><para>regex_id() != 0 </para>
</postconditions><postconditions><para>mark_count() >= 0 </para>
</postconditions></constructor>
<copy-assignment><type><classname>basic_regex</classname>< BidiIter > &</type><template>
<template-type-parameter name="Expr"/>
</template><parameter name="expr"><paramtype>Expr const &</paramtype><description><para>The static regular expression. </para></description></parameter><description><para>Construct from a static regular expression.</para><para>
</para></description><requires><para>Expr is the type of a static regular expression. </para>
</requires><postconditions><para>regex_id() != 0 </para>
</postconditions><postconditions><para>mark_count() >= 0 </para>
</postconditions><returns><para>*this </para>
</returns><throws><simpara><classname>std::bad_alloc</classname> on out of memory </simpara></throws></copy-assignment>
<method-group name="public static functions">
<method name="compile" specifiers="static"><type><classname>basic_regex</classname>< BidiIter ></type><template>
<template-type-parameter name="InputIter"/>
</template><parameter name="begin"><paramtype>InputIter</paramtype><description><para>The beginning of a range of characters representing the regular expression to compile. </para></description></parameter><parameter name="end"><paramtype>InputIter</paramtype><description><para>The end of a range of characters representing the regular expression to compile. </para></description></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default><description><para>Optional bitmask that determines how the pat string is interpreted. (See syntax_option_type.) </para></description></parameter><description><para>Factory method for building a regex object from a range of characters. Equivalent to <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname>< BidiIter >().compile(begin, end, flags);</para><para>
</para></description><requires><para>[begin,end) is a valid range. </para>
</requires><requires><para>The range of characters specified by [begin,end) contains a valid string-based representation of a regular expression. </para>
</requires><returns><para>A <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object corresponding to the regular expression represented by the character range. </para>
</returns><throws><simpara><classname>regex_error</classname> when the range of characters has invalid regular expression syntax. </simpara></throws></method>
<method name="compile" specifiers="static"><type><classname>basic_regex</classname>< BidiIter ></type><template>
<template-type-parameter name="InputRange"/>
</template><parameter name="pat"><paramtype>InputRange const &</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="compile" specifiers="static"><type><classname>basic_regex</classname>< BidiIter ></type><parameter name="begin"><paramtype>char_type const *</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="compile" specifiers="static"><type><classname>basic_regex</classname>< BidiIter ></type><parameter name="begin"><paramtype>char_type const *</paramtype></parameter><parameter name="len"><paramtype>std::size_t</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
</method-group>
<method-group name="private member functions">
</method-group>
</struct><struct name="c_regex_traits"><template>
<template-type-parameter name="Char"/>
</template><purpose>Encapsaulates the standard C locale functions for use by the <computeroutput><classname alt="boost::xpressive::basic_regex">basic_regex</classname><></computeroutput> class template. </purpose><method-group name="public member functions">
<method name="operator==" cv="const"><type>bool</type><parameter name=""><paramtype><classname>c_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::c_regex_traits">c_regex_traits</classname> objects for equality</para><para>
</para></description><returns><para>true. </para>
</returns></method>
<method name="operator !=" cv="const"><type>bool</type><parameter name=""><paramtype><classname>c_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::c_regex_traits">c_regex_traits</classname> objects for inequality</para><para>
</para></description><returns><para>false. </para>
</returns></method>
<method name="fold_case" cv="const"><type>string_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Returns a <computeroutput>string_type</computeroutput> containing all the characters that compare equal disregrarding case to the one passed in. This function can only be called if <computeroutput><classname alt="boost::xpressive::has_fold_case">has_fold_case</classname><<classname alt="boost::xpressive::c_regex_traits">c_regex_traits</classname><Char> >::value</computeroutput> is <computeroutput>true</computeroutput>.</para><para>
</para></description><returns><para><computeroutput>string_type</computeroutput> containing all chars which are equal to <computeroutput>ch</computeroutput> when disregarding case </para>
</returns></method>
<method name="imbue"><type>locale_type</type><parameter name="loc"><paramtype>locale_type</paramtype></parameter><description><para>No-op </para></description></method>
</method-group>
<constructor><parameter name="loc"><paramtype>locale_type const &</paramtype><default>locale_type()</default></parameter><description><para>Initialize a <classname alt="boost::xpressive::c_regex_traits">c_regex_traits</classname> object to use the global C locale. </para></description></constructor>
<method-group name="public static functions">
<method name="widen" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char</paramtype><description><para>The source character. </para></description></parameter><description><para>Convert a char to a Char</para><para>
</para></description><returns><para>ch if Char is char, std::btowc(ch) if Char is wchar_t. </para>
</returns></method>
<method name="hash" specifiers="static"><type>unsigned char</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Returns a hash value for a Char in the range [0, UCHAR_MAX]</para><para>
</para></description><returns><para>a value between 0 and UCHAR_MAX, inclusive. </para>
</returns></method>
<method name="translate" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>No-op</para><para>
</para></description><returns><para>ch </para>
</returns></method>
<method name="translate_nocase" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to lower-case using the current global C locale.</para><para>
</para></description><returns><para>std::tolower(ch) if Char is char, std::towlower(ch) if Char is wchar_t. </para>
</returns></method>
<method name="tolower" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to lower-case using the current global C locale.</para><para>
</para></description><returns><para>std::tolower(ch) if Char is char, std::towlower(ch) if Char is wchar_t. </para>
</returns></method>
<method name="toupper" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to upper-case using the current global C locale.</para><para>
</para></description><returns><para>std::toupper(ch) if Char is char, std::towupper(ch) if Char is wchar_t. </para>
</returns></method>
<method name="in_range" specifiers="static"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range.</para><para>
</para></description><returns><para>first <= ch && ch <= last. </para>
</returns></method>
<method name="in_range_nocase" specifiers="static"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range, irregardless of case.</para><para>
<note><para>The default implementation doesn't do proper Unicode case folding, but this is the best we can do with the standard C locale functions. </para>
</note>
</para></description><returns><para>in_range(first, last, ch) || in_range(first, last, tolower(ch)) || in_range(first, last, toupper(ch)) </para>
</returns></method>
<method name="transform" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sort key for the character sequence designated by the iterator range [F1, F2) such that if the character sequence [G1, G2) sorts before the character sequence [H1, H2) then v.transform(G1, G2) < v.transform(H1, H2).</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="transform_primary" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sort key for the character sequence designated by the iterator range [F1, F2) such that if the character sequence [G1, G2) sorts before the character sequence [H1, H2) when character case is not considered then v.transform_primary(G1, G2) < v.transform_primary(H1, H2).</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_collatename" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sequence of characters that represents the collating element consisting of the character sequence designated by the iterator range [F1, F2). Returns an empty string if the character sequence is not a valid collating element.</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_classname" specifiers="static"><type>char_class_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype><description><para>A forward iterator to the start of the character sequence representing the name of the character class. </para></description></parameter><parameter name="end"><paramtype>FwdIter</paramtype><description><para>The end of the character sequence. </para></description></parameter><parameter name="icase"><paramtype>bool</paramtype><description><para>Specifies whether the returned bitmask should represent the case-insensitive version of the character class. </para></description></parameter><description><para>For the character class name represented by the specified character sequence, return the corresponding bitmask representation.</para><para>
</para></description><returns><para>A bitmask representing the character class. </para>
</returns></method>
<method name="isctype" specifiers="static"><type>bool</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The character to test. </para></description></parameter><parameter name="mask"><paramtype>char_class_type</paramtype><description><para>The character class bitmask against which to test. </para></description></parameter><description><para>Tests a character against a character class bitmask.</para><para>
</para></description><requires><para>mask is a bitmask returned by lookup_classname, or is several such masks bit-or'ed together. </para>
</requires><returns><para>true if the character is a member of any of the specified character classes, false otherwise. </para>
</returns></method>
<method name="value" specifiers="static"><type>int</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The digit character. </para></description></parameter><parameter name="radix"><paramtype>int</paramtype><description><para>The radix to use for the conversion. </para></description></parameter><description><para>Convert a digit character into the integer it represents.</para><para>
</para></description><requires><para>radix is one of 8, 10, or 16. </para>
</requires><returns><para>-1 if ch is not a digit character, the integer value of the character otherwise. If char_type is char, std::strtol is used for the conversion. If char_type is wchar_t, std::wcstol is used. </para>
</returns></method>
<method name="getloc" specifiers="static"><type>locale_type</type><description><para>No-op </para></description></method>
</method-group>
</struct><struct name="compiler_traits"><template>
<template-type-parameter name="RegexTraits"/>
</template></struct><struct name="cpp_regex_traits"><template>
<template-type-parameter name="Char"/>
</template><purpose>Encapsaulates a <computeroutput>std::locale</computeroutput> for use by the <computeroutput><classname alt="boost::xpressive::basic_regex">basic_regex</classname><></computeroutput> class template. </purpose><method-group name="public member functions">
<method name="operator==" cv="const"><type>bool</type><parameter name="that"><paramtype><classname>cpp_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::cpp_regex_traits">cpp_regex_traits</classname> objects for equality</para><para>
</para></description><returns><para>this->getloc() == that.getloc(). </para>
</returns></method>
<method name="operator !=" cv="const"><type>bool</type><parameter name="that"><paramtype><classname>cpp_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::cpp_regex_traits">cpp_regex_traits</classname> objects for inequality</para><para>
</para></description><returns><para>this->getloc() != that.getloc(). </para>
</returns></method>
<method name="widen" cv="const"><type>char_type</type><parameter name="ch"><paramtype>char</paramtype><description><para>The source character. </para></description></parameter><description><para>Convert a char to a Char</para><para>
</para></description><returns><para>std::use_facet<std::ctype<char_type> >(this->getloc()).widen(ch). </para>
</returns></method>
<method name="translate_nocase" cv="const"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to lower-case using the internally-stored std::locale.</para><para>
</para></description><returns><para>std::tolower(ch, this->getloc()). </para>
</returns></method>
<method name="tolower" cv="const"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to lower-case using the internally-stored std::locale.</para><para>
</para></description><returns><para>std::tolower(ch, this->getloc()). </para>
</returns></method>
<method name="toupper" cv="const"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Converts a character to upper-case using the internally-stored std::locale.</para><para>
</para></description><returns><para>std::toupper(ch, this->getloc()). </para>
</returns></method>
<method name="fold_case" cv="const"><type>string_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Returns a <computeroutput>string_type</computeroutput> containing all the characters that compare equal disregrarding case to the one passed in. This function can only be called if <computeroutput><classname alt="boost::xpressive::has_fold_case">has_fold_case</classname><<classname alt="boost::xpressive::cpp_regex_traits">cpp_regex_traits</classname><Char> >::value</computeroutput> is <computeroutput>true</computeroutput>.</para><para>
</para></description><returns><para><computeroutput>string_type</computeroutput> containing all chars which are equal to <computeroutput>ch</computeroutput> when disregarding case </para>
</returns></method>
<method name="in_range_nocase" cv="const"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range, irregardless of case.</para><para>
<note><para>The default implementation doesn't do proper Unicode case folding, but this is the best we can do with the standard ctype facet. </para>
</note>
</para></description><returns><para>in_range(first, last, ch) || in_range(first, last, tolower(ch, this->getloc())) || in_range(first, last, toupper(ch, this->getloc())) </para>
</returns></method>
<method name="transform_primary" cv="const"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name=""><paramtype>FwdIter</paramtype></parameter><parameter name=""><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sort key for the character sequence designated by the iterator range [F1, F2) such that if the character sequence [G1, G2) sorts before the character sequence [H1, H2) when character case is not considered then v.transform_primary(G1, G2) < v.transform_primary(H1, H2).</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_collatename" cv="const"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name=""><paramtype>FwdIter</paramtype></parameter><parameter name=""><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sequence of characters that represents the collating element consisting of the character sequence designated by the iterator range [F1, F2). Returns an empty string if the character sequence is not a valid collating element.</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_classname" cv="const"><type>char_class_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype><description><para>A forward iterator to the start of the character sequence representing the name of the character class. </para></description></parameter><parameter name="end"><paramtype>FwdIter</paramtype><description><para>The end of the character sequence. </para></description></parameter><parameter name="icase"><paramtype>bool</paramtype><description><para>Specifies whether the returned bitmask should represent the case-insensitive version of the character class. </para></description></parameter><description><para>For the character class name represented by the specified character sequence, return the corresponding bitmask representation.</para><para>
</para></description><returns><para>A bitmask representing the character class. </para>
</returns></method>
<method name="isctype" cv="const"><type>bool</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The character to test. </para></description></parameter><parameter name="mask"><paramtype>char_class_type</paramtype><description><para>The character class bitmask against which to test. </para></description></parameter><description><para>Tests a character against a character class bitmask.</para><para>
</para></description><requires><para>mask is a bitmask returned by lookup_classname, or is several such masks bit-or'ed together. </para>
</requires><returns><para>true if the character is a member of any of the specified character classes, false otherwise. </para>
</returns></method>
<method name="value" cv="const"><type>int</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The digit character. </para></description></parameter><parameter name="radix"><paramtype>int</paramtype><description><para>The radix to use for the conversion. </para></description></parameter><description><para>Convert a digit character into the integer it represents.</para><para>
</para></description><requires><para>radix is one of 8, 10, or 16. </para>
</requires><returns><para>-1 if ch is not a digit character, the integer value of the character otherwise. The conversion is performed by imbueing a std::stringstream with this->getloc(); setting the radix to one of oct, hex or dec; inserting ch into the stream; and extracting an int. </para>
</returns></method>
<method name="imbue"><type>locale_type</type><parameter name="loc"><paramtype>locale_type</paramtype><description><para>A std::locale. </para></description></parameter><description><para>Imbues *this with loc</para><para>
</para></description><returns><para>the previous std::locale used by *this. </para>
</returns></method>
<method name="getloc" cv="const"><type>locale_type</type><description><para>Returns the current std::locale used by *this. </para></description></method>
<method name="hash"><type>unsigned char</type><template>
</template><parameter name="ch"><paramtype>unsigned char</paramtype></parameter></method>
<method name="hash"><type>unsigned char</type><template>
</template><parameter name="ch"><paramtype>char</paramtype></parameter></method>
<method name="hash"><type>unsigned char</type><template>
</template><parameter name="ch"><paramtype>signed char</paramtype></parameter></method>
<method name="hash"><type>unsigned char</type><template>
</template><parameter name="ch"><paramtype>wchar_t</paramtype></parameter></method>
</method-group>
<constructor><parameter name="loc"><paramtype>locale_type const &</paramtype><default>locale_type()</default></parameter><description><para>Initialize a <classname alt="boost::xpressive::cpp_regex_traits">cpp_regex_traits</classname> object to use the specified std::locale, or the global std::locale if none is specified. </para></description></constructor>
<method-group name="public static functions">
<method name="hash" specifiers="static"><type>unsigned char</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Returns a hash value for a Char in the range [0, UCHAR_MAX]</para><para>
</para></description><returns><para>a value between 0 and UCHAR_MAX, inclusive. </para>
</returns></method>
<method name="translate" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>No-op</para><para>
</para></description><returns><para>ch </para>
</returns></method>
<method name="in_range" specifiers="static"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range.</para><para>
</para></description><returns><para>first <= ch && ch <= last. </para>
</returns></method>
</method-group>
<method-group name="private static functions">
</method-group>
</struct><struct name="has_fold_case"><template>
<template-type-parameter name="Traits"/>
</template><inherit access="public">is_convertible< Traits::version_tag *, regex_traits_version_1_case_fold_tag * ></inherit><purpose>Trait used to denote that a traits class has the fold_case member function. </purpose></struct><struct name="local"><template>
<template-type-parameter name="T"><purpose><para>The type of the local variable.</para></purpose></template-type-parameter>
</template><inherit access="public">proto::terminal::type< reference_wrapper< T > ></inherit><purpose><computeroutput>local<></computeroutput> is a lazy wrapper for a reference to a value that is stored within the local itself. It is for use within xpressive semantic actions. </purpose><description><para>
Below is an example of how to use <computeroutput>local<></computeroutput> in semantic actions.<programlisting language="c++">using namespace boost::xpressive;
local<int> i(0);
std::string str("1!2!3?");
// count the exciting digits, but not the
// questionable ones.
sregex rex = +( _d [ ++i ] >> '!' );
regex_search(str, rex);
assert( i.get() == 2 );
</programlisting><note><para>As the name "local" suggests, <computeroutput>local<></computeroutput> objects and the regexes that refer to them should never leave the local scope. The value stored within the local object will be destroyed at the end of the <computeroutput>local<>'s</computeroutput> lifetime, and any regex objects still holding the <computeroutput>local<></computeroutput> will be left with a dangling reference. </para>
</note>
</para></description><method-group name="public member functions">
<method name="get"><type>T &</type><purpose>Fetch the wrapped value. </purpose></method>
<method name="get" cv="const"><type>T const &</type><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
</method-group>
<constructor><purpose>Store a default-constructed value of type <computeroutput>T</computeroutput>. </purpose></constructor>
<constructor specifiers="explicit"><parameter name="t"><paramtype>T const &</paramtype><description><para>The initial value. </para></description></parameter><purpose>Store a default-constructed value of type <computeroutput>T</computeroutput>. </purpose><description><para>
</para></description></constructor>
</struct><struct name="match_results"><template>
<template-type-parameter name="BidiIter"/>
</template><purpose>Class template <classname alt="boost::xpressive::match_results">match_results</classname><> holds the results of a regex_match() or a regex_search() as a collection of <classname alt="boost::xpressive::sub_match">sub_match</classname> objects. </purpose><description><para>Class template <classname alt="boost::xpressive::match_results">match_results</classname><> denotes a collection of sequences representing the result of a regular expression match. Storage for the collection is allocated and freed as necessary by the member functions of class <classname alt="boost::xpressive::match_results">match_results</classname><>.</para><para>The class template <classname alt="boost::xpressive::match_results">match_results</classname><> conforms to the requirements of a Sequence, as specified in (lib.sequence.reqmts), except that only operations defined for const-qualified Sequences are supported. </para></description><method-group name="public member functions">
<method name="size" cv="const"><type>size_type</type><description><para>Returns one plus the number of marked sub-expressions in the regular expression that was matched if *this represents the result of a successful match. Otherwise returns 0. </para></description></method>
<method name="empty" cv="const"><type>bool</type><description><para>Returns size() == 0. </para></description></method>
<method name="length" cv="const"><type>difference_type</type><parameter name="sub"><paramtype>size_type</paramtype><default>0</default></parameter><description><para>Returns (*this)[sub].length(). </para></description></method>
<method name="position" cv="const"><type>difference_type</type><parameter name="sub"><paramtype>size_type</paramtype><default>0</default></parameter><description><para>If !(*this)[sub].matched then returns -1. Otherwise returns std::distance(base, (*this)[sub].first), where base is the start iterator of the sequence that was searched. [Note - unless this is part of a repeated search with a <classname alt="boost::xpressive::regex_iterator">regex_iterator</classname> then base is the same as prefix().first - end note] </para></description></method>
<method name="str" cv="const"><type>string_type</type><parameter name="sub"><paramtype>size_type</paramtype><default>0</default></parameter><description><para>Returns (*this)[sub].str(). </para></description></method>
<method name="operator []" cv="const"><type>const_reference</type><template>
<template-type-parameter name="Sub"/>
</template><parameter name="sub"><paramtype>Sub const &</paramtype></parameter><description><para>Returns a reference to the <classname alt="boost::xpressive::sub_match">sub_match</classname> object representing the sequence that matched marked sub-expression sub. If sub == 0 then returns a reference to a <classname alt="boost::xpressive::sub_match">sub_match</classname> object representing the sequence that matched the whole regular expression. If sub >= size() then returns a <classname alt="boost::xpressive::sub_match">sub_match</classname> object representing an unmatched sub-expression. </para></description></method>
<method name="prefix" cv="const"><type>const_reference</type><description><para>Returns a reference to the <classname alt="boost::xpressive::sub_match">sub_match</classname> object representing the character sequence from the start of the string being matched/searched, to the start of the match found.</para><para>
</para></description><requires><para>(*this)[0].matched is true </para>
</requires></method>
<method name="suffix" cv="const"><type>const_reference</type><description><para>Returns a reference to the <classname alt="boost::xpressive::sub_match">sub_match</classname> object representing the character sequence from the end of the match found to the end of the string being matched/searched.</para><para>
</para></description><requires><para>(*this)[0].matched is true </para>
</requires></method>
<method name="begin" cv="const"><type>const_iterator</type><description><para>Returns a starting iterator that enumerates over all the marked sub-expression matches stored in *this. </para></description></method>
<method name="end" cv="const"><type>const_iterator</type><description><para>Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this. </para></description></method>
<method name="conversion-operator" cv="const"><type>bool_type</type><description><para>Returns a true value if (*this)[0].matched, else returns a false value. </para></description></method>
<method name="operator !" cv="const"><type>bool</type><description><para>Returns true if empty() || !(*this)[0].matched, else returns false. </para></description></method>
<method name="regex_id" cv="const"><type>regex_id_type</type><description><para>Returns the id of the <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object most recently used with this <classname alt="boost::xpressive::match_results">match_results</classname> object. </para></description></method>
<method name="nested_results" cv="const"><type>nested_results_type const &</type><description><para>Returns a Sequence of nested <classname alt="boost::xpressive::match_results">match_results</classname> elements. </para></description></method>
<method name="format" cv="const"><type>OutputIterator</type><template>
<template-type-parameter name="Format"/>
<template-type-parameter name="OutputIterator"/>
</template><parameter name="out"><paramtype>OutputIterator</paramtype></parameter><parameter name="fmt"><paramtype>Format const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::format_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter><description><para>If <computeroutput>Format</computeroutput> models <computeroutput>ForwardRange</computeroutput> or is a null-terminated string, this function copies the character sequence in <computeroutput>fmt</computeroutput> to <computeroutput>OutputIterator</computeroutput> <computeroutput>out</computeroutput>. For each format specifier or escape sequence in <computeroutput>fmt</computeroutput>, replace that sequence with either the character(s) it represents, or the sequence within <computeroutput>*this</computeroutput> to which it refers. The bitmasks specified in flags determines what format specifiers or escape sequences are recognized. By default, this is the format used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutputIterator, regex_constants::match_flag_type></computeroutput>, this function returns <computeroutput>fmt(*this, out, flags)</computeroutput>.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutputIterator></computeroutput>, this function returns <computeroutput>fmt(*this, out)</computeroutput>.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter> ></computeroutput>, this function returns <computeroutput>std::copy(x.begin(), x.end(), out)</computeroutput>, where <computeroutput>x</computeroutput> is the result of calling <computeroutput>fmt(*this)</computeroutput>. </para></description></method>
<method name="format" cv="const"><type>OutputIterator</type><template>
<template-type-parameter name="OutputIterator"/>
</template><parameter name="out"><paramtype>OutputIterator</paramtype></parameter><parameter name="fmt"><paramtype>char_type const *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::format_default</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="format" cv="const"><type>string_type</type><template>
<template-type-parameter name="Format"/>
<template-type-parameter name="OutputIterator"/>
</template><parameter name="fmt"><paramtype>Format const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::format_default</default></parameter><parameter name=""><paramtype><emphasis>unspecified</emphasis></paramtype><default>0</default></parameter><description><para>If <computeroutput>Format</computeroutput> models <computeroutput>ForwardRange</computeroutput> or is a null-terminated string, this function returns a copy of the character sequence <computeroutput>fmt</computeroutput>. For each format specifier or escape sequence in <computeroutput>fmt</computeroutput>, replace that sequence with either the character(s) it represents, or the sequence within <computeroutput>*this</computeroutput> to which it refers. The bitmasks specified in <computeroutput>flags</computeroutput> determines what format specifiers or escape sequences are recognized. By default this is the format used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutputIterator, regex_constants::match_flag_type></computeroutput>, this function returns a <computeroutput>string_type</computeroutput> object <computeroutput>x</computeroutput> populated by calling <computeroutput>fmt(*this, out, flags)</computeroutput>, where <computeroutput>out</computeroutput> is a <computeroutput>back_insert_iterator</computeroutput> into <computeroutput>x</computeroutput>.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter>, OutputIterator></computeroutput>, this function returns a <computeroutput>string_type</computeroutput> object <computeroutput>x</computeroutput> populated by calling <computeroutput>fmt(*this, out)</computeroutput>, where <computeroutput>out</computeroutput> is a <computeroutput>back_insert_iterator</computeroutput> into <computeroutput>x</computeroutput>.</para><para>Otherwise, if <computeroutput>Format</computeroutput> models <computeroutput>Callable<<classname alt="boost::xpressive::match_results">match_results</classname><BidiIter> ></computeroutput>, this function returns <computeroutput>fmt(*this)</computeroutput>. </para></description></method>
<method name="format" cv="const"><type>string_type</type><parameter name="fmt"><paramtype>char_type const *</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::format_default</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="swap"><type>void</type><parameter name="that"><paramtype><classname>match_results</classname>< BidiIter > &</paramtype><description><para>The <classname alt="boost::xpressive::match_results">match_results</classname> object to swap with. </para></description></parameter><description><para>Swaps the contents of two <classname alt="boost::xpressive::match_results">match_results</classname> objects. Guaranteed not to throw.
</para></description><postconditions><para>*this contains the sequence of matched sub-expressions that were in that, that contains the sequence of matched sub-expressions that were in *this. </para>
</postconditions><throws><simpara>Will not throw.</simpara></throws></method>
<method name="let"><type><classname>match_results</classname>< BidiIter > &</type><template>
<template-type-parameter name="Arg"/>
</template><parameter name="arg"><paramtype>Arg const &</paramtype></parameter><description><para>TODO document me </para></description></method>
</method-group>
<constructor><description><para>
</para></description><postconditions><para>regex_id() == 0 </para>
</postconditions><postconditions><para>size() == 0 </para>
</postconditions><postconditions><para>empty() == true </para>
</postconditions><postconditions><para>str() == string_type() </para>
</postconditions></constructor>
<constructor><parameter name="that"><paramtype><classname>match_results</classname>< BidiIter > const &</paramtype><description><para>The <classname alt="boost::xpressive::match_results">match_results</classname> object to copy </para></description></parameter><description><para>
</para></description><postconditions><para>regex_id() == that.regex_id(). </para>
</postconditions><postconditions><para>size() == that.size(). </para>
</postconditions><postconditions><para>empty() == that.empty(). </para>
</postconditions><postconditions><para>str(n) == that.str(n) for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>prefix() == that.prefix(). </para>
</postconditions><postconditions><para>suffix() == that.suffix(). </para>
</postconditions><postconditions><para>(*this)[n] == that[n] for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>length(n) == that.length(n) for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>position(n) == that.position(n) for all positive integers n < that.size(). </para>
</postconditions></constructor>
<destructor/>
<copy-assignment><type><classname>match_results</classname>< BidiIter > &</type><parameter name="that"><paramtype><classname>match_results</classname>< BidiIter > const &</paramtype><description><para>The <classname alt="boost::xpressive::match_results">match_results</classname> object to copy. </para></description></parameter><description><para>
</para></description><postconditions><para>regex_id() == that.regex_id(). </para>
</postconditions><postconditions><para>size() == that.size(). </para>
</postconditions><postconditions><para>empty() == that.empty(). </para>
</postconditions><postconditions><para>str(n) == that.str(n) for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>prefix() == that.prefix(). </para>
</postconditions><postconditions><para>suffix() == that.suffix(). </para>
</postconditions><postconditions><para>(*this)[n] == that[n] for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>length(n) == that.length(n) for all positive integers n < that.size(). </para>
</postconditions><postconditions><para>position(n) == that.position(n) for all positive integers n < that.size(). </para>
</postconditions></copy-assignment>
</struct><struct name="null_regex_traits"><template>
<template-type-parameter name="Elem"/>
</template><purpose>stub <classname alt="boost::xpressive::regex_traits">regex_traits</classname> for non-char data </purpose><method-group name="public member functions">
<method name="operator==" cv="const"><type>bool</type><parameter name="that"><paramtype><classname>null_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> objects for equality</para><para>
</para></description><returns><para>true. </para>
</returns></method>
<method name="operator !=" cv="const"><type>bool</type><parameter name="that"><paramtype><classname>null_regex_traits</classname>< char_type > const &</paramtype></parameter><description><para>Checks two <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> objects for inequality</para><para>
</para></description><returns><para>false. </para>
</returns></method>
<method name="widen" cv="const"><type>char_type</type><parameter name="ch"><paramtype>char</paramtype><description><para>The source character. </para></description></parameter><description><para>Convert a char to a Elem</para><para>
</para></description><returns><para>Elem(ch). </para>
</returns></method>
</method-group>
<constructor><parameter name=""><paramtype>locale_type</paramtype><default>locale_type()</default></parameter><description><para>Initialize a <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> object. </para></description></constructor>
<method-group name="public static functions">
<method name="hash" specifiers="static"><type>unsigned char</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Returns a hash value for a Elem in the range [0, UCHAR_MAX]</para><para>
</para></description><returns><para>a value between 0 and UCHAR_MAX, inclusive. </para>
</returns></method>
<method name="translate" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>No-op</para><para>
</para></description><returns><para>ch </para>
</returns></method>
<method name="translate_nocase" specifiers="static"><type>char_type</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>No-op</para><para>
</para></description><returns><para>ch </para>
</returns></method>
<method name="in_range" specifiers="static"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range.</para><para>
</para></description><returns><para>first <= ch && ch <= last. </para>
</returns></method>
<method name="in_range_nocase" specifiers="static"><type>bool</type><parameter name="first"><paramtype>char_type</paramtype><description><para>The bottom of the range, inclusive. </para></description></parameter><parameter name="last"><paramtype>char_type</paramtype><description><para>The top of the range, inclusive. </para></description></parameter><parameter name="ch"><paramtype>char_type</paramtype><description><para>The source character. </para></description></parameter><description><para>Checks to see if a character is within a character range.</para><para>
<note><para>Since the <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> does not do case-folding, this function is equivalent to in_range(). </para>
</note>
</para></description><returns><para>first <= ch && ch <= last. </para>
</returns></method>
<method name="transform" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sort key for the character sequence designated by the iterator range [F1, F2) such that if the character sequence [G1, G2) sorts before the character sequence [H1, H2) then v.transform(G1, G2) < v.transform(H1, H2).</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="transform_primary" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sort key for the character sequence designated by the iterator range [F1, F2) such that if the character sequence [G1, G2) sorts before the character sequence [H1, H2) when character case is not considered then v.transform_primary(G1, G2) < v.transform_primary(H1, H2).</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_collatename" specifiers="static"><type>string_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype></parameter><parameter name="end"><paramtype>FwdIter</paramtype></parameter><description><para>Returns a sequence of characters that represents the collating element consisting of the character sequence designated by the iterator range [F1, F2). Returns an empty string if the character sequence is not a valid collating element.</para><para><note><para>Not currently used </para>
</note>
</para></description></method>
<method name="lookup_classname" specifiers="static"><type>char_class_type</type><template>
<template-type-parameter name="FwdIter"/>
</template><parameter name="begin"><paramtype>FwdIter</paramtype><description><para>not used </para></description></parameter><parameter name="end"><paramtype>FwdIter</paramtype><description><para>not used </para></description></parameter><parameter name="icase"><paramtype>bool</paramtype><description><para>not used </para></description></parameter><description><para>The <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> does not have character classifications, so lookup_classname() is unused.</para><para>
</para></description><returns><para>static_cast<char_class_type>(0) </para>
</returns></method>
<method name="isctype" specifiers="static"><type>bool</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>not used </para></description></parameter><parameter name="mask"><paramtype>char_class_type</paramtype><description><para>not used </para></description></parameter><description><para>The <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> does not have character classifications, so isctype() is unused.</para><para>
</para></description><returns><para>false </para>
</returns></method>
<method name="value" specifiers="static"><type>int</type><parameter name="ch"><paramtype>char_type</paramtype><description><para>not used </para></description></parameter><parameter name="radix"><paramtype>int</paramtype><description><para>not used </para></description></parameter><description><para>The <classname alt="boost::xpressive::null_regex_traits">null_regex_traits</classname> recognizes no elements as digits, so value() is unused.</para><para>
</para></description><returns><para>-1 </para>
</returns></method>
<method name="imbue" specifiers="static"><type>locale_type</type><parameter name="loc"><paramtype>locale_type</paramtype><description><para>not used </para></description></parameter><description><para>Not used</para><para>
</para></description><returns><para>loc </para>
</returns></method>
<method name="getloc" specifiers="static"><type>locale_type</type><description><para>Returns locale_type().</para><para>
</para></description><returns><para>locale_type() </para>
</returns></method>
</method-group>
</struct><struct name="placeholder"><template>
<template-type-parameter name="T"><purpose><para>The type of the object for which this placeholder stands in. </para></purpose></template-type-parameter>
<template-nontype-parameter name="I"><type>int</type><default>0</default><purpose><para>An optional identifier that can be used to distinguish this placeholder from others that may be used in the same semantic action that happen to have the same type.</para></purpose></template-nontype-parameter>
</template><purpose>For defining a placeholder to stand in for a variable a semantic action. </purpose><description><para>Use <computeroutput>placeholder<></computeroutput> to define a placeholder for use in semantic actions to stand in for real objects. The use of placeholders allows regular expressions with actions to be defined once and reused in many contexts to read and write from objects which were not available when the regex was defined.</para><para>
You can use <computeroutput>placeholder<></computeroutput> by creating an object of type <computeroutput>placeholder<T></computeroutput> and using that object in a semantic action exactly as you intend an object of type <computeroutput>T</computeroutput> to be used.<programlisting language="c++">placeholder<int> _i;
placeholder<double> _d;
sregex rex = ( some >> regex >> here )
[ ++_i, _d *= _d ];
</programlisting>Then, when doing a pattern match with either <computeroutput>regex_search()</computeroutput>, <computeroutput>regex_match()</computeroutput> or <computeroutput>regex_replace()</computeroutput>, pass a <computeroutput><classname alt="boost::xpressive::match_results">match_results</classname><></computeroutput> object that contains bindings for the placeholders used in the regex object's semantic actions. You can create the bindings by calling <computeroutput>match_results::let</computeroutput> as follows:<programlisting language="c++">int i = 0;
double d = 3.14;
smatch what;
what.let(_i = i)
.let(_d = d);
if(regex_match("some string", rex, what))
// i and d mutated here
</programlisting>If a semantic action executes that contains an unbound placeholder, a exception of type <computeroutput><classname alt="boost::xpressive::regex_error">regex_error</classname></computeroutput> is thrown.</para><para>See the discussion for <computeroutput>xpressive::let()</computeroutput> and the <link linkend="boost_xpressive.user_s_guide.semantic_actions_and_user_defined_assertions.referring_to_non_local_variables"> "Referring to Non-Local Variables"</link> section in the Users' Guide for more information.</para><para><emphasis>Example:</emphasis><programlisting language="c++">// Define a placeholder for a map object:
placeholder<std::map<std::string, int> > _map;
// Match a word and an integer, separated by =>,
// and then stuff the result into a std::map<>
sregex pair = ( (s1= +_w) >> "=>" >> (s2= +_d) )
[ _map[s1] = as<int>(s2) ];
// Match one or more word/integer pairs, separated
// by whitespace.
sregex rx = pair >> *(+_s >> pair);
// The string to parse
std::string str("aaa=>1 bbb=>23 ccc=>456");
// Here is the actual map to fill in:
std::map<std::string, int> result;
// Bind the _map placeholder to the actual map
smatch what;
what.let( _map = result );
// Execute the match and fill in result map
if(regex_match(str, what, rx))
{
std::cout << result["aaa"] << '\n';
std::cout << result["bbb"] << '\n';
std::cout << result["ccc"] << '\n';
}
</programlisting> </para></description><method-group name="public member functions">
</method-group>
<copy-assignment cv="const"><type><emphasis>unspecified</emphasis></type><parameter name="t"><paramtype>T &</paramtype><description><para>The object to associate with this placeholder </para></description></parameter><description><para>
</para></description><returns><para>An object of unspecified type that records the association of <computeroutput>t</computeroutput> with <computeroutput>*this</computeroutput>. </para>
</returns></copy-assignment>
<copy-assignment cv="const"><type><emphasis>unspecified</emphasis></type><parameter name="t"><paramtype>T const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></copy-assignment>
</struct><struct name="reference"><template>
<template-type-parameter name="T"><purpose><para>The type of the referent.</para></purpose></template-type-parameter>
</template><inherit access="public">proto::extends< proto::terminal< reference_wrapper< T > >::type, reference< T > ></inherit><purpose><computeroutput>reference<></computeroutput> is a lazy wrapper for a reference that can be used in xpressive semantic actions. </purpose><description><para>
Here is an example of how to use <computeroutput>reference<></computeroutput> to create a lazy reference to an existing object so it can be read and written in an xpressive semantic action.<programlisting language="c++">using namespace boost::xpressive;
std::map<std::string, int> result;
reference<std::map<std::string, int> > result_ref(result);
// Match a word and an integer, separated by =>,
// and then stuff the result into a std::map<>
sregex pair = ( (s1= +_w) >> "=>" >> (s2= +_d) )
[ result_ref[s1] = as<int>(s2) ];
</programlisting> </para></description><method-group name="public member functions">
<method name="get" cv="const"><type>T &</type><purpose>Fetch the stored value. </purpose></method>
</method-group>
<constructor specifiers="explicit"><parameter name="t"><paramtype>T &</paramtype><description><para>Reference to object </para></description></parameter><purpose>Store a reference to <computeroutput>t</computeroutput>. </purpose><description><para>
</para></description></constructor>
</struct><struct name="regex_compiler"><template>
<template-type-parameter name="BidiIter"/>
<template-type-parameter name="RegexTraits"/>
<template-type-parameter name="CompilerTraits"/>
</template><purpose>Class template <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> is a factory for building <classname alt="boost::xpressive::basic_regex">basic_regex</classname> objects from a string. </purpose><description><para>Class template <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> is used to construct a <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object from a string. The string should contain a valid regular expression. You can imbue a <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> object with a locale, after which all <classname alt="boost::xpressive::basic_regex">basic_regex</classname> objects created with that <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> object will use that locale. After creating a <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> object, and optionally imbueing it with a locale, you can call the compile() method to construct a <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object, passing it the string representing the regular expression. You can call compile() multiple times on the same <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> object. Two <classname alt="boost::xpressive::basic_regex">basic_regex</classname> objects compiled from the same string will have different regex_id's. </para></description><method-group name="public member functions">
<method name="imbue"><type>locale_type</type><parameter name="loc"><paramtype>locale_type</paramtype><description><para>The locale that this <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname> should use. </para></description></parameter><description><para>Specify the locale to be used by a <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname>.</para><para>
</para></description><returns><para>The previous locale. </para>
</returns></method>
<method name="getloc" cv="const"><type>locale_type</type><description><para>Get the locale used by a <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname>.</para><para>
</para></description><returns><para>The locale used by this <classname alt="boost::xpressive::regex_compiler">regex_compiler</classname>. </para>
</returns></method>
<method name="compile"><type><classname>basic_regex</classname>< BidiIter ></type><template>
<template-type-parameter name="InputIter"/>
</template><parameter name="begin"><paramtype>InputIter</paramtype><description><para>The beginning of a range of characters representing the regular expression to compile. </para></description></parameter><parameter name="end"><paramtype>InputIter</paramtype><description><para>The end of a range of characters representing the regular expression to compile. </para></description></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default><description><para>Optional bitmask that determines how the pat string is interpreted. (See syntax_option_type.) </para></description></parameter><description><para>Builds a <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object from a range of characters.</para><para>
</para></description><requires><para>InputIter is a model of the InputIterator concept. </para>
</requires><requires><para>[begin,end) is a valid range. </para>
</requires><requires><para>The range of characters specified by [begin,end) contains a valid string-based representation of a regular expression. </para>
</requires><returns><para>A <classname alt="boost::xpressive::basic_regex">basic_regex</classname> object corresponding to the regular expression represented by the character range. </para>
</returns><throws><simpara><classname>regex_error</classname> when the range of characters has invalid regular expression syntax. </simpara></throws></method>
<method name="compile"><type>disable_if< is_pointer< InputRange >, <classname>basic_regex</classname>< BidiIter > >::type</type><template>
<template-type-parameter name="InputRange"/>
</template><parameter name="pat"><paramtype>InputRange const &</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="compile"><type><classname>basic_regex</classname>< BidiIter ></type><parameter name="begin"><paramtype>char_type const *</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype><default>regex_constants::ECMAScript</default></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="compile"><type><classname>basic_regex</classname>< BidiIter ></type><parameter name="begin"><paramtype>char_type const *</paramtype></parameter><parameter name="size"><paramtype>std::size_t</paramtype></parameter><parameter name="flags"><paramtype>flag_type</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator []"><type><classname>basic_regex</classname>< BidiIter > &</type><parameter name="name"><paramtype>string_type const &</paramtype><description><para>A std::string containing the name of the regular expression. </para></description></parameter><description><para>Return a reference to the named regular expression. If no such named regular expression exists, create a new regular expression and return a reference to it.</para><para>
</para></description><requires><para>The string is not empty. </para>
</requires><throws><simpara><classname>bad_alloc</classname> on allocation failure. </simpara></throws></method>
<method name="operator []" cv="const"><type><classname>basic_regex</classname>< BidiIter > const &</type><parameter name="name"><paramtype>string_type const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
</method-group>
<constructor specifiers="explicit"><parameter name="traits"><paramtype>RegexTraits const &</paramtype><default>RegexTraits()</default></parameter></constructor>
<method-group name="private member functions">
<method name="is_upper_" cv="const"><type>bool</type><parameter name="ch"><paramtype>char_type</paramtype></parameter></method>
</method-group>
</struct><struct name="regex_id_filter_predicate"><template>
<template-type-parameter name="BidiIter"/>
</template><method-group name="public member functions">
<method name="operator()" cv="const"><type>bool</type><parameter name="res"><paramtype><classname>match_results</classname>< BidiIter > const &</paramtype></parameter></method>
</method-group>
<constructor><parameter name="regex_id"><paramtype>regex_id_type</paramtype></parameter></constructor>
</struct><struct name="regex_iterator"><template>
<template-type-parameter name="BidiIter"/>
</template><method-group name="public member functions">
<method name="operator *" cv="const"><type>value_type const &</type></method>
<method name="operator ->" cv="const"><type>value_type const *</type></method>
<method name="operator++"><type><classname>regex_iterator</classname>< BidiIter > &</type><description><para>If what.prefix().first != what[0].second and if the element match_prev_avail is not set in flags then sets it. Then behaves as if by calling regex_search(what[0].second, end, what, *pre, flags), with the following variation: in the event that the previous match found was of zero length (what[0].length() == 0) then attempts to find a non-zero length match starting at what[0].second, only if that fails and provided what[0].second != suffix().second does it look for a (possibly zero length) match starting from what[0].second + 1. If no further match is found then sets *this equal to the end of sequence iterator.
</para></description><postconditions><para>(*this)->size() == pre->mark_count() + 1 </para>
</postconditions><postconditions><para>(*this)->empty() == false </para>
</postconditions><postconditions><para>(*this)->prefix().first == An iterator denoting the end point of the previous match found </para>
</postconditions><postconditions><para>(*this)->prefix().last == (**this)[0].first </para>
</postconditions><postconditions><para>(*this)->prefix().matched == (*this)->prefix().first != (*this)->prefix().second </para>
</postconditions><postconditions><para>(*this)->suffix().first == (**this)[0].second </para>
</postconditions><postconditions><para>(*this)->suffix().last == end </para>
</postconditions><postconditions><para>(*this)->suffix().matched == (*this)->suffix().first != (*this)->suffix().second </para>
</postconditions><postconditions><para>(**this)[0].first == The starting iterator for this match. </para>
</postconditions><postconditions><para>(**this)[0].second == The ending iterator for this match. </para>
</postconditions><postconditions><para>(**this)[0].matched == true if a full match was found, and false if it was a partial match (found as a result of the match_partial flag being set). </para>
</postconditions><postconditions><para>(**this)[n].first == For all integers n < (*this)->size(), the start of the sequence that matched sub-expression n. Alternatively, if sub-expression n did not participate in the match, then end. </para>
</postconditions><postconditions><para>(**this)[n].second == For all integers n < (*this)->size(), the end of the sequence that matched sub-expression n. Alternatively, if sub-expression n did not participate in the match, then end. </para>
</postconditions><postconditions><para>(**this)[n].matched == For all integers n < (*this)->size(), true if sub-expression n participated in the match, false otherwise. </para>
</postconditions><postconditions><para>(*this)->position() == The distance from the start of the original sequence being iterated, to the start of this match. </para>
</postconditions></method>
<method name="operator++"><type><classname>regex_iterator</classname>< BidiIter ></type><parameter name=""><paramtype>int</paramtype></parameter></method>
</method-group>
<constructor/>
<constructor><parameter name="begin"><paramtype>BidiIter</paramtype></parameter><parameter name="end"><paramtype>BidiIter</paramtype></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></constructor>
<constructor><template>
<template-type-parameter name="LetExpr"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype></parameter><parameter name="end"><paramtype>BidiIter</paramtype></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype></parameter><parameter name="args"><paramtype><emphasis>unspecified</emphasis></paramtype></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default></parameter></constructor>
<constructor><parameter name="that"><paramtype><classname>regex_iterator</classname>< BidiIter > const &</paramtype></parameter></constructor>
<copy-assignment><type><classname>regex_iterator</classname>< BidiIter > &</type><parameter name="that"><paramtype><classname>regex_iterator</classname>< BidiIter > const &</paramtype></parameter></copy-assignment>
<method-group name="private member functions">
</method-group>
</struct><struct name="regex_token_iterator"><template>
<template-type-parameter name="BidiIter"/>
</template><method-group name="public member functions">
<method name="operator *" cv="const"><type>value_type const &</type></method>
<method name="operator ->" cv="const"><type>value_type const *</type></method>
<method name="operator++"><type><classname>regex_token_iterator</classname>< BidiIter > &</type><description><para>If N == -1 then sets *this equal to the end of sequence iterator. Otherwise if N+1 < subs.size(), then increments N and sets result equal to ((subs[N] == -1) ? value_type(what.prefix().str()) : value_type(what[subs[N]].str())). Otherwise if what.prefix().first != what[0].second and if the element match_prev_avail is not set in flags then sets it. Then locates the next match as if by calling regex_search(what[0].second, end, what, *pre, flags), with the following variation: in the event that the previous match found was of zero length (what[0].length() == 0) then attempts to find a non-zero length match starting at what[0].second, only if that fails and provided what[0].second != suffix().second does it look for a (possibly zero length) match starting from what[0].second + 1. If such a match is found then sets N equal to zero, and sets result equal to ((subs[N] == -1) ? value_type(what.prefix().str()) : value_type(what[subs[N]].str())). Otherwise if no further matches were found, then let last_end be the endpoint of the last match that was found. Then if last_end != end and subs[0] == -1 sets N equal to -1 and sets result equal to value_type(last_end, end). Otherwise sets *this equal to the end of sequence iterator. </para></description></method>
<method name="operator++"><type><classname>regex_token_iterator</classname>< BidiIter ></type><parameter name=""><paramtype>int</paramtype></parameter></method>
</method-group>
<constructor><description><para>
</para></description><postconditions><para><computeroutput>*this</computeroutput> is the end of sequence iterator. </para>
</postconditions></constructor>
<constructor><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the character range to search. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the character range to search. </para></description></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regex pattern to search for. </para></description></parameter><description><para>
</para></description><requires><para><computeroutput/>[begin,end) is a valid range. </para>
</requires></constructor>
<constructor><template>
<template-type-parameter name="LetExpr"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the character range to search. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the character range to search. </para></description></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regex pattern to search for. </para></description></parameter><parameter name="args"><paramtype><emphasis>unspecified</emphasis></paramtype><description><para>A let() expression with argument bindings for semantic actions. </para></description></parameter><description><para>
</para></description><requires><para><computeroutput/>[begin,end) is a valid range. </para>
</requires></constructor>
<constructor><template>
<template-type-parameter name="Subs"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the character range to search. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the character range to search. </para></description></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regex pattern to search for. </para></description></parameter><parameter name="subs"><paramtype>Subs const &</paramtype><description><para>A range of integers designating sub-matches to be treated as tokens. </para></description></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default><description><para>Optional match flags, used to control how the expression is matched against the sequence. (See match_flag_type.) </para></description></parameter><description><para>
</para></description><requires><para><computeroutput/>[begin,end) is a valid range. </para>
</requires><requires><para><computeroutput>subs</computeroutput> is either an integer greater or equal to -1, or else an array or non-empty <computeroutput>std::vector<></computeroutput> of such integers. </para>
</requires></constructor>
<constructor><template>
<template-type-parameter name="Subs"/>
<template-type-parameter name="LetExpr"/>
</template><parameter name="begin"><paramtype>BidiIter</paramtype><description><para>The beginning of the character range to search. </para></description></parameter><parameter name="end"><paramtype>BidiIter</paramtype><description><para>The end of the character range to search. </para></description></parameter><parameter name="rex"><paramtype><classname>basic_regex</classname>< BidiIter > const &</paramtype><description><para>The regex pattern to search for. </para></description></parameter><parameter name="subs"><paramtype>Subs const &</paramtype><description><para>A range of integers designating sub-matches to be treated as tokens. </para></description></parameter><parameter name="args"><paramtype><emphasis>unspecified</emphasis></paramtype><description><para>A let() expression with argument bindings for semantic actions. </para></description></parameter><parameter name="flags"><paramtype>regex_constants::match_flag_type</paramtype><default>regex_constants::match_default</default><description><para>Optional match flags, used to control how the expression is matched against the sequence. (See match_flag_type.) </para></description></parameter><description><para>
</para></description><requires><para><computeroutput/>[begin,end) is a valid range. </para>
</requires><requires><para><computeroutput>subs</computeroutput> is either an integer greater or equal to -1, or else an array or non-empty <computeroutput>std::vector<></computeroutput> of such integers. </para>
</requires></constructor>
<constructor><parameter name="that"><paramtype><classname>regex_token_iterator</classname>< BidiIter > const &</paramtype></parameter><description><para>
</para></description><postconditions><para><computeroutput>*this == that</computeroutput> </para>
</postconditions></constructor>
<copy-assignment><type><classname>regex_token_iterator</classname>< BidiIter > &</type><parameter name="that"><paramtype><classname>regex_token_iterator</classname>< BidiIter > const &</paramtype></parameter><description><para>
</para></description><postconditions><para><computeroutput>*this == that</computeroutput> </para>
</postconditions></copy-assignment>
<method-group name="private member functions">
</method-group>
</struct><struct name="regex_traits"><template>
<template-type-parameter name="Char"/>
<template-type-parameter name="Impl"/>
</template><inherit access="public">Impl</inherit><description><para>Thin wrapper around the default <classname alt="boost::xpressive::regex_traits">regex_traits</classname> implementation, either <classname alt="boost::xpressive::cpp_regex_traits">cpp_regex_traits</classname> or <classname alt="boost::xpressive::c_regex_traits">c_regex_traits</classname> </para></description><method-group name="public member functions">
</method-group>
<constructor/>
<constructor specifiers="explicit"><parameter name="loc"><paramtype>locale_type const &</paramtype></parameter></constructor>
</struct><struct name="sub_match"><template>
<template-type-parameter name="BidiIter"/>
</template><inherit access="public">std::pair< BidiIter, BidiIter ></inherit><purpose>Class template <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname></computeroutput> denotes the sequence of characters matched by a particular marked sub-expression. </purpose><description><para>When the marked sub-expression denoted by an object of type <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> participated in a regular expression match then member <computeroutput>matched</computeroutput> evaluates to <computeroutput>true</computeroutput>, and members <computeroutput>first</computeroutput> and <computeroutput>second</computeroutput> denote the range of characters <computeroutput>[first,second)</computeroutput> which formed that match. Otherwise <computeroutput>matched</computeroutput> is <computeroutput>false</computeroutput>, and members <computeroutput>first</computeroutput> and <computeroutput>second</computeroutput> contained undefined values.</para><para>If an object of type <computeroutput><classname alt="boost::xpressive::sub_match">sub_match</classname><></computeroutput> represents sub-expression 0 - that is to say the whole match - then member <computeroutput>matched</computeroutput> is always <computeroutput>true</computeroutput>, unless a partial match was obtained as a result of the flag <computeroutput>match_partial</computeroutput> being passed to a regular expression algorithm, in which case member <computeroutput>matched</computeroutput> is <computeroutput>false</computeroutput>, and members <computeroutput>first</computeroutput> and <computeroutput>second</computeroutput> represent the character range that formed the partial match. </para></description><method-group name="public member functions">
<method name="str" cv="const"><type>string_type</type></method>
<method name="conversion-operator" cv="const"><type>string_type</type></method>
<method name="length" cv="const"><type>difference_type</type></method>
<method name="conversion-operator" cv="const"><type>bool_type</type></method>
<method name="operator !" cv="const"><type>bool</type></method>
<method name="compare" cv="const"><type>int</type><parameter name="str"><paramtype>string_type const &</paramtype><description><para>the string against which to compare </para></description></parameter><purpose>Performs a lexicographic string comparison. </purpose><description><para>
</para></description><returns><para>the results of <computeroutput>(*this).str().compare(str)</computeroutput> </para>
</returns></method>
<method name="compare" cv="const"><type>int</type><parameter name="sub"><paramtype><classname>sub_match</classname> const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="compare" cv="const"><type>int</type><parameter name="ptr"><paramtype>value_type const *</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
</method-group>
<constructor/>
<constructor><parameter name="first"><paramtype>BidiIter</paramtype></parameter><parameter name="second"><paramtype>BidiIter</paramtype></parameter><parameter name="matched_"><paramtype>bool</paramtype><default>false</default></parameter></constructor>
</struct><struct name="value"><template>
<template-type-parameter name="T"><purpose><para>The type of the value to store.</para></purpose></template-type-parameter>
</template><inherit access="public">proto::extends< proto::terminal< T >::type, value< T > ></inherit><purpose><computeroutput>value<></computeroutput> is a lazy wrapper for a value that can be used in xpressive semantic actions. </purpose><description><para>
Below is an example that shows where <computeroutput><computeroutput>value<></computeroutput></computeroutput> is useful.<programlisting language="c++">sregex good_voodoo(boost::shared_ptr<int> pi)
{
using namespace boost::xpressive;
// Use val() to hold the shared_ptr by value:
sregex rex = +( _d [ ++*val(pi) ] >> '!' );
// OK, rex holds a reference count to the integer.
return rex;
}
</programlisting>In the above code, <computeroutput>xpressive::val()</computeroutput> is a function that returns a <computeroutput>value<></computeroutput> object. Had <computeroutput>val()</computeroutput> not been used here, the operation <computeroutput>++*pi</computeroutput> would have been evaluated eagerly once, instead of lazily when the regex match happens. </para></description><method-group name="public member functions">
<method name="get"><type>T &</type><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="get" cv="const"><type>T const &</type><purpose>Fetch the stored value. </purpose></method>
</method-group>
<constructor><purpose>Store a default-constructed <computeroutput>T</computeroutput>. </purpose></constructor>
<constructor specifiers="explicit"><parameter name="t"><paramtype>T const &</paramtype><description><para>The initial value. </para></description></parameter><purpose>Store a copy of <computeroutput>t</computeroutput>. </purpose><description><para>
</para></description></constructor>
</struct><namespace name="op">
<struct name="as"><template>
<template-type-parameter name="T"><purpose><para>The type to which to lexically cast the parameter. </para></purpose></template-type-parameter>
</template><purpose><computeroutput>as<></computeroutput> is a PolymorphicFunctionObject for lexically casting a parameter to a different type. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="Value"/>
</template><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to lexically cast. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>boost::lexical_cast<T>(val)</computeroutput> </para>
</returns></method>
</method-group>
<method-group name="private member functions">
</method-group>
</struct><struct name="const_cast_"><template>
<template-type-parameter name="T"><purpose><para>The type to which to const-cast the parameter. </para></purpose></template-type-parameter>
</template><purpose><computeroutput><classname alt="boost::xpressive::op::const_cast_">const_cast_</classname><></computeroutput> is a PolymorphicFunctionObject for const-casting a parameter to a cv qualification. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="Value"/>
</template><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to const-cast. </para></description></parameter><description><para>
</para></description><requires><para>Types <computeroutput>T</computeroutput> and <computeroutput>Value</computeroutput> differ only in cv-qualification. </para>
</requires><returns><para><computeroutput>const_cast<T>(val)</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="construct"><template>
<template-type-parameter name="T"><purpose><para>The type of the object to construct. </para></purpose></template-type-parameter>
</template><purpose><computeroutput>construct<></computeroutput> is a PolymorphicFunctionObject for constructing a new object. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>T</type><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="A0"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><parameter name="a1"><paramtype>A1 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
<template-type-parameter name="A2"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype><description><para>The first argument to the constructor </para></description></parameter><parameter name="a1"><paramtype>A1 const &</paramtype><description><para>The second argument to the constructor </para></description></parameter><parameter name="a2"><paramtype>A2 const &</paramtype><description><para>The third argument to the constructor </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>T(a0,a1,...)</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="dynamic_cast_"><template>
<template-type-parameter name="T"><purpose><para>The type to which to dynamically cast the parameter. </para></purpose></template-type-parameter>
</template><purpose><computeroutput><classname alt="boost::xpressive::op::dynamic_cast_">dynamic_cast_</classname><></computeroutput> is a PolymorphicFunctionObject for dynamically casting a parameter to a different type. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="Value"/>
</template><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to dynamically cast. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>dynamic_cast<T>(val)</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="static_cast_"><template>
<template-type-parameter name="T"><purpose><para>The type to which to statically cast the parameter. </para></purpose></template-type-parameter>
</template><purpose><computeroutput><classname alt="boost::xpressive::op::static_cast_">static_cast_</classname><></computeroutput> is a PolymorphicFunctionObject for statically casting a parameter to a different type. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>T</type><template>
<template-type-parameter name="Value"/>
</template><parameter name="val"><paramtype>Value const &</paramtype><description><para>The value to statically cast. </para></description></parameter><description><para>
</para></description><returns><para><computeroutput>static_cast<T>(val)</computeroutput> </para>
</returns></method>
</method-group>
</struct><struct name="throw_"><template>
<template-type-parameter name="Except"><purpose><para>The type of the object to throw. </para></purpose></template-type-parameter>
</template><purpose><computeroutput><classname alt="boost::xpressive::op::throw_">throw_</classname><></computeroutput> is a PolymorphicFunctionObject for throwing an exception. </purpose><description><para>
</para></description><method-group name="public member functions">
<method name="operator()" cv="const"><type>void</type><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="A0"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype></parameter><parameter name="a1"><paramtype>A1 const &</paramtype></parameter><description><para>This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </para></description></method>
<method name="operator()" cv="const"><type>void</type><template>
<template-type-parameter name="A0"/>
<template-type-parameter name="A1"/>
<template-type-parameter name="A2"/>
</template><parameter name="a0"><paramtype>A0 const &</paramtype><description><para>The first argument to the constructor </para></description></parameter><parameter name="a1"><paramtype>A1 const &</paramtype><description><para>The second argument to the constructor </para></description></parameter><parameter name="a2"><paramtype>A2 const &</paramtype><description><para>The third argument to the constructor </para></description></parameter><description><para>
<note><para>This function makes use of the <computeroutput>BOOST_THROW_EXCEPTION</computeroutput> macro to actually throw the exception. See the documentation for the Boost.Exception library. </para>
</note>
</para></description><throws><simpara><classname><tt>Except(a0</classname> </simpara></throws></method>
</method-group>
</struct></namespace>
<typedef name="regex_id_type"><type>void const *</type></typedef>
<typedef name="sregex"><type><classname>basic_regex</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cregex"><type><classname>basic_regex</classname>< char const * ></type></typedef>
<typedef name="wsregex"><type><classname>basic_regex</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcregex"><type><classname>basic_regex</classname>< wchar_t const * ></type></typedef>
<typedef name="ssub_match"><type><classname>sub_match</classname>< std::string::const_iterator ></type></typedef>
<typedef name="csub_match"><type><classname>sub_match</classname>< char const * ></type></typedef>
<typedef name="wssub_match"><type><classname>sub_match</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcsub_match"><type><classname>sub_match</classname>< wchar_t const * ></type></typedef>
<typedef name="sregex_compiler"><type><classname>regex_compiler</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cregex_compiler"><type><classname>regex_compiler</classname>< char const * ></type></typedef>
<typedef name="wsregex_compiler"><type><classname>regex_compiler</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcregex_compiler"><type><classname>regex_compiler</classname>< wchar_t const * ></type></typedef>
<typedef name="sregex_iterator"><type><classname>regex_iterator</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cregex_iterator"><type><classname>regex_iterator</classname>< char const * ></type></typedef>
<typedef name="wsregex_iterator"><type><classname>regex_iterator</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcregex_iterator"><type><classname>regex_iterator</classname>< wchar_t const * ></type></typedef>
<typedef name="sregex_token_iterator"><type><classname>regex_token_iterator</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cregex_token_iterator"><type><classname>regex_token_iterator</classname>< char const * ></type></typedef>
<typedef name="wsregex_token_iterator"><type><classname>regex_token_iterator</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcregex_token_iterator"><type><classname>regex_token_iterator</classname>< wchar_t const * ></type></typedef>
<typedef name="smatch"><type><classname>match_results</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cmatch"><type><classname>match_results</classname>< char const * ></type></typedef>
<typedef name="wsmatch"><type><classname>match_results</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcmatch"><type><classname>match_results</classname>< wchar_t const * ></type></typedef>
<typedef name="sregex_id_filter_predicate"><type><classname>regex_id_filter_predicate</classname>< std::string::const_iterator ></type></typedef>
<typedef name="cregex_id_filter_predicate"><type><classname>regex_id_filter_predicate</classname>< char const * ></type></typedef>
<typedef name="wsregex_id_filter_predicate"><type><classname>regex_id_filter_predicate</classname>< std::wstring::const_iterator ></type></typedef>
<typedef name="wcregex_id_filter_predicate"><type><classname>regex_id_filter_predicate</classname>< wchar_t const * ></type></typedef>
</namespace>
</namespace>
<macro name="BOOST_PROTO_FUSION_V2"/>
<macro name="BOOST_XPRESSIVE_HAS_MS_STACK_GUARD"/>
</header>
<header name="boost/xpressive/xpressive_static.hpp">
<para>Includes everything you need to write static regular expressions and use them. </para></header>
<header name="boost/xpressive/xpressive_typeof.hpp">
<para>Type registrations so that xpressive can be used with the Boost.Typeof library. </para></header>
</library-reference>