1 | /*=============================================================================
|
---|
2 | Copyright (c) 2001-2003 Joel de Guzman
|
---|
3 | http://spirit.sourceforge.net/
|
---|
4 |
|
---|
5 | Use, modification and distribution is subject to the Boost Software
|
---|
6 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
---|
7 | http://www.boost.org/LICENSE_1_0.txt)
|
---|
8 | =============================================================================*/
|
---|
9 | #ifndef BOOST_SPIRIT_CHSET_OPERATORS_IPP
|
---|
10 | #define BOOST_SPIRIT_CHSET_OPERATORS_IPP
|
---|
11 |
|
---|
12 | ///////////////////////////////////////////////////////////////////////////////
|
---|
13 | #include <boost/limits.hpp>
|
---|
14 |
|
---|
15 | ///////////////////////////////////////////////////////////////////////////////
|
---|
16 | namespace boost { namespace spirit {
|
---|
17 |
|
---|
18 | ///////////////////////////////////////////////////////////////////////////////
|
---|
19 | //
|
---|
20 | // chset free operators implementation
|
---|
21 | //
|
---|
22 | ///////////////////////////////////////////////////////////////////////////////
|
---|
23 | template <typename CharT>
|
---|
24 | inline chset<CharT>
|
---|
25 | operator|(chset<CharT> const& a, chset<CharT> const& b)
|
---|
26 | {
|
---|
27 | return chset<CharT>(a) |= b;
|
---|
28 | }
|
---|
29 |
|
---|
30 | //////////////////////////////////
|
---|
31 | template <typename CharT>
|
---|
32 | inline chset<CharT>
|
---|
33 | operator-(chset<CharT> const& a, chset<CharT> const& b)
|
---|
34 | {
|
---|
35 | return chset<CharT>(a) -= b;
|
---|
36 | }
|
---|
37 |
|
---|
38 | //////////////////////////////////
|
---|
39 | template <typename CharT>
|
---|
40 | inline chset<CharT>
|
---|
41 | operator~(chset<CharT> const& a)
|
---|
42 | {
|
---|
43 | return chset<CharT>(a).inverse();
|
---|
44 | }
|
---|
45 |
|
---|
46 | //////////////////////////////////
|
---|
47 | template <typename CharT>
|
---|
48 | inline chset<CharT>
|
---|
49 | operator&(chset<CharT> const& a, chset<CharT> const& b)
|
---|
50 | {
|
---|
51 | return chset<CharT>(a) &= b;
|
---|
52 | }
|
---|
53 |
|
---|
54 | //////////////////////////////////
|
---|
55 | template <typename CharT>
|
---|
56 | inline chset<CharT>
|
---|
57 | operator^(chset<CharT> const& a, chset<CharT> const& b)
|
---|
58 | {
|
---|
59 | return chset<CharT>(a) ^= b;
|
---|
60 | }
|
---|
61 |
|
---|
62 | ///////////////////////////////////////////////////////////////////////////////
|
---|
63 | //
|
---|
64 | // range <--> chset free operators implementation
|
---|
65 | //
|
---|
66 | ///////////////////////////////////////////////////////////////////////////////
|
---|
67 | template <typename CharT>
|
---|
68 | inline chset<CharT>
|
---|
69 | operator|(chset<CharT> const& a, range<CharT> const& b)
|
---|
70 | {
|
---|
71 | chset<CharT> a_(a);
|
---|
72 | a_.set(b);
|
---|
73 | return a_;
|
---|
74 | }
|
---|
75 |
|
---|
76 | //////////////////////////////////
|
---|
77 | template <typename CharT>
|
---|
78 | inline chset<CharT>
|
---|
79 | operator&(chset<CharT> const& a, range<CharT> const& b)
|
---|
80 | {
|
---|
81 | chset<CharT> a_(a);
|
---|
82 | if(b.first != (std::numeric_limits<CharT>::min)()) {
|
---|
83 | a_.clear(range<CharT>((std::numeric_limits<CharT>::min)(), b.first - 1));
|
---|
84 | }
|
---|
85 | if(b.last != (std::numeric_limits<CharT>::max)()) {
|
---|
86 | a_.clear(range<CharT>(b.last + 1, (std::numeric_limits<CharT>::max)()));
|
---|
87 | }
|
---|
88 | return a_;
|
---|
89 | }
|
---|
90 |
|
---|
91 | //////////////////////////////////
|
---|
92 | template <typename CharT>
|
---|
93 | inline chset<CharT>
|
---|
94 | operator-(chset<CharT> const& a, range<CharT> const& b)
|
---|
95 | {
|
---|
96 | chset<CharT> a_(a);
|
---|
97 | a_.clear(b);
|
---|
98 | return a_;
|
---|
99 | }
|
---|
100 |
|
---|
101 | //////////////////////////////////
|
---|
102 | template <typename CharT>
|
---|
103 | inline chset<CharT>
|
---|
104 | operator^(chset<CharT> const& a, range<CharT> const& b)
|
---|
105 | {
|
---|
106 | return a ^ chset<CharT>(b);
|
---|
107 | }
|
---|
108 |
|
---|
109 | //////////////////////////////////
|
---|
110 | template <typename CharT>
|
---|
111 | inline chset<CharT>
|
---|
112 | operator|(range<CharT> const& a, chset<CharT> const& b)
|
---|
113 | {
|
---|
114 | chset<CharT> b_(b);
|
---|
115 | b_.set(a);
|
---|
116 | return b_;
|
---|
117 | }
|
---|
118 |
|
---|
119 | //////////////////////////////////
|
---|
120 | template <typename CharT>
|
---|
121 | inline chset<CharT>
|
---|
122 | operator&(range<CharT> const& a, chset<CharT> const& b)
|
---|
123 | {
|
---|
124 | chset<CharT> b_(b);
|
---|
125 | if(a.first != (std::numeric_limits<CharT>::min)()) {
|
---|
126 | b_.clear(range<CharT>((std::numeric_limits<CharT>::min)(), a.first - 1));
|
---|
127 | }
|
---|
128 | if(a.last != (std::numeric_limits<CharT>::max)()) {
|
---|
129 | b_.clear(range<CharT>(a.last + 1, (std::numeric_limits<CharT>::max)()));
|
---|
130 | }
|
---|
131 | return b_;
|
---|
132 | }
|
---|
133 |
|
---|
134 | //////////////////////////////////
|
---|
135 | template <typename CharT>
|
---|
136 | inline chset<CharT>
|
---|
137 | operator-(range<CharT> const& a, chset<CharT> const& b)
|
---|
138 | {
|
---|
139 | return chset<CharT>(a) - b;
|
---|
140 | }
|
---|
141 |
|
---|
142 | //////////////////////////////////
|
---|
143 | template <typename CharT>
|
---|
144 | inline chset<CharT>
|
---|
145 | operator^(range<CharT> const& a, chset<CharT> const& b)
|
---|
146 | {
|
---|
147 | return chset<CharT>(a) ^ b;
|
---|
148 | }
|
---|
149 |
|
---|
150 | ///////////////////////////////////////////////////////////////////////////////
|
---|
151 | //
|
---|
152 | // literal primitives <--> chset free operators implementation
|
---|
153 | //
|
---|
154 | ///////////////////////////////////////////////////////////////////////////////
|
---|
155 | template <typename CharT>
|
---|
156 | inline chset<CharT>
|
---|
157 | operator|(chset<CharT> const& a, CharT b)
|
---|
158 | {
|
---|
159 | return a | chset<CharT>(b);
|
---|
160 | }
|
---|
161 |
|
---|
162 | //////////////////////////////////
|
---|
163 | template <typename CharT>
|
---|
164 | inline chset<CharT>
|
---|
165 | operator&(chset<CharT> const& a, CharT b)
|
---|
166 | {
|
---|
167 | return a & chset<CharT>(b);
|
---|
168 | }
|
---|
169 |
|
---|
170 | //////////////////////////////////
|
---|
171 | template <typename CharT>
|
---|
172 | inline chset<CharT>
|
---|
173 | operator-(chset<CharT> const& a, CharT b)
|
---|
174 | {
|
---|
175 | return a - chset<CharT>(b);
|
---|
176 | }
|
---|
177 |
|
---|
178 | //////////////////////////////////
|
---|
179 | template <typename CharT>
|
---|
180 | inline chset<CharT>
|
---|
181 | operator^(chset<CharT> const& a, CharT b)
|
---|
182 | {
|
---|
183 | return a ^ chset<CharT>(b);
|
---|
184 | }
|
---|
185 |
|
---|
186 | //////////////////////////////////
|
---|
187 | template <typename CharT>
|
---|
188 | inline chset<CharT>
|
---|
189 | operator|(CharT a, chset<CharT> const& b)
|
---|
190 | {
|
---|
191 | return chset<CharT>(a) | b;
|
---|
192 | }
|
---|
193 |
|
---|
194 | //////////////////////////////////
|
---|
195 | template <typename CharT>
|
---|
196 | inline chset<CharT>
|
---|
197 | operator&(CharT a, chset<CharT> const& b)
|
---|
198 | {
|
---|
199 | return chset<CharT>(a) & b;
|
---|
200 | }
|
---|
201 |
|
---|
202 | //////////////////////////////////
|
---|
203 | template <typename CharT>
|
---|
204 | inline chset<CharT>
|
---|
205 | operator-(CharT a, chset<CharT> const& b)
|
---|
206 | {
|
---|
207 | return chset<CharT>(a) - b;
|
---|
208 | }
|
---|
209 |
|
---|
210 | //////////////////////////////////
|
---|
211 | template <typename CharT>
|
---|
212 | inline chset<CharT>
|
---|
213 | operator^(CharT a, chset<CharT> const& b)
|
---|
214 | {
|
---|
215 | return chset<CharT>(a) ^ b;
|
---|
216 | }
|
---|
217 |
|
---|
218 | ///////////////////////////////////////////////////////////////////////////////
|
---|
219 | //
|
---|
220 | // chlit <--> chset free operators implementation
|
---|
221 | //
|
---|
222 | ///////////////////////////////////////////////////////////////////////////////
|
---|
223 | template <typename CharT>
|
---|
224 | inline chset<CharT>
|
---|
225 | operator|(chset<CharT> const& a, chlit<CharT> const& b)
|
---|
226 | {
|
---|
227 | return a | chset<CharT>(b.ch);
|
---|
228 | }
|
---|
229 |
|
---|
230 | //////////////////////////////////
|
---|
231 | template <typename CharT>
|
---|
232 | inline chset<CharT>
|
---|
233 | operator&(chset<CharT> const& a, chlit<CharT> const& b)
|
---|
234 | {
|
---|
235 | return a & chset<CharT>(b.ch);
|
---|
236 | }
|
---|
237 |
|
---|
238 | //////////////////////////////////
|
---|
239 | template <typename CharT>
|
---|
240 | inline chset<CharT>
|
---|
241 | operator-(chset<CharT> const& a, chlit<CharT> const& b)
|
---|
242 | {
|
---|
243 | return a - chset<CharT>(b.ch);
|
---|
244 | }
|
---|
245 |
|
---|
246 | //////////////////////////////////
|
---|
247 | template <typename CharT>
|
---|
248 | inline chset<CharT>
|
---|
249 | operator^(chset<CharT> const& a, chlit<CharT> const& b)
|
---|
250 | {
|
---|
251 | return a ^ chset<CharT>(b.ch);
|
---|
252 | }
|
---|
253 |
|
---|
254 | //////////////////////////////////
|
---|
255 | template <typename CharT>
|
---|
256 | inline chset<CharT>
|
---|
257 | operator|(chlit<CharT> const& a, chset<CharT> const& b)
|
---|
258 | {
|
---|
259 | return chset<CharT>(a.ch) | b;
|
---|
260 | }
|
---|
261 |
|
---|
262 | //////////////////////////////////
|
---|
263 | template <typename CharT>
|
---|
264 | inline chset<CharT>
|
---|
265 | operator&(chlit<CharT> const& a, chset<CharT> const& b)
|
---|
266 | {
|
---|
267 | return chset<CharT>(a.ch) & b;
|
---|
268 | }
|
---|
269 |
|
---|
270 | //////////////////////////////////
|
---|
271 | template <typename CharT>
|
---|
272 | inline chset<CharT>
|
---|
273 | operator-(chlit<CharT> const& a, chset<CharT> const& b)
|
---|
274 | {
|
---|
275 | return chset<CharT>(a.ch) - b;
|
---|
276 | }
|
---|
277 |
|
---|
278 | //////////////////////////////////
|
---|
279 | template <typename CharT>
|
---|
280 | inline chset<CharT>
|
---|
281 | operator^(chlit<CharT> const& a, chset<CharT> const& b)
|
---|
282 | {
|
---|
283 | return chset<CharT>(a.ch) ^ b;
|
---|
284 | }
|
---|
285 |
|
---|
286 | #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
---|
287 |
|
---|
288 | ///////////////////////////////////////////////////////////////////////////////
|
---|
289 | //
|
---|
290 | // negated_char_parser <--> chset free operators implementation
|
---|
291 | //
|
---|
292 | ///////////////////////////////////////////////////////////////////////////////
|
---|
293 | template <typename CharT, typename ParserT>
|
---|
294 | inline chset<CharT>
|
---|
295 | operator|(chset<CharT> const& a, negated_char_parser<ParserT> const& b)
|
---|
296 | {
|
---|
297 | return a | chset<CharT>(b);
|
---|
298 | }
|
---|
299 |
|
---|
300 | //////////////////////////////////
|
---|
301 | template <typename CharT, typename ParserT>
|
---|
302 | inline chset<CharT>
|
---|
303 | operator&(chset<CharT> const& a, negated_char_parser<ParserT> const& b)
|
---|
304 | {
|
---|
305 | return a & chset<CharT>(b);
|
---|
306 | }
|
---|
307 |
|
---|
308 | //////////////////////////////////
|
---|
309 | template <typename CharT, typename ParserT>
|
---|
310 | inline chset<CharT>
|
---|
311 | operator-(chset<CharT> const& a, negated_char_parser<ParserT> const& b)
|
---|
312 | {
|
---|
313 | return a - chset<CharT>(b);
|
---|
314 | }
|
---|
315 |
|
---|
316 | //////////////////////////////////
|
---|
317 | template <typename CharT, typename ParserT>
|
---|
318 | inline chset<CharT>
|
---|
319 | operator^(chset<CharT> const& a, negated_char_parser<ParserT> const& b)
|
---|
320 | {
|
---|
321 | return a ^ chset<CharT>(b);
|
---|
322 | }
|
---|
323 |
|
---|
324 | //////////////////////////////////
|
---|
325 | template <typename CharT, typename ParserT>
|
---|
326 | inline chset<CharT>
|
---|
327 | operator|(negated_char_parser<ParserT> const& a, chset<CharT> const& b)
|
---|
328 | {
|
---|
329 | return chset<CharT>(a) | b;
|
---|
330 | }
|
---|
331 |
|
---|
332 | //////////////////////////////////
|
---|
333 | template <typename CharT, typename ParserT>
|
---|
334 | inline chset<CharT>
|
---|
335 | operator&(negated_char_parser<ParserT> const& a, chset<CharT> const& b)
|
---|
336 | {
|
---|
337 | return chset<CharT>(a) & b;
|
---|
338 | }
|
---|
339 |
|
---|
340 | //////////////////////////////////
|
---|
341 | template <typename CharT, typename ParserT>
|
---|
342 | inline chset<CharT>
|
---|
343 | operator-(negated_char_parser<ParserT> const& a, chset<CharT> const& b)
|
---|
344 | {
|
---|
345 | return chset<CharT>(a) - b;
|
---|
346 | }
|
---|
347 |
|
---|
348 | //////////////////////////////////
|
---|
349 | template <typename CharT, typename ParserT>
|
---|
350 | inline chset<CharT>
|
---|
351 | operator^(negated_char_parser<ParserT> const& a, chset<CharT> const& b)
|
---|
352 | {
|
---|
353 | return chset<CharT>(a) ^ b;
|
---|
354 | }
|
---|
355 |
|
---|
356 | #else // BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
---|
357 |
|
---|
358 | ///////////////////////////////////////////////////////////////////////////////
|
---|
359 | //
|
---|
360 | // negated_char_parser<range> <--> chset free operators implementation
|
---|
361 | //
|
---|
362 | ///////////////////////////////////////////////////////////////////////////////
|
---|
363 | template <typename CharT>
|
---|
364 | inline chset<CharT>
|
---|
365 | operator|(chset<CharT> const& a, negated_char_parser<range<CharT> > const& b)
|
---|
366 | {
|
---|
367 | return a | chset<CharT>(b);
|
---|
368 | }
|
---|
369 |
|
---|
370 | //////////////////////////////////
|
---|
371 | template <typename CharT>
|
---|
372 | inline chset<CharT>
|
---|
373 | operator&(chset<CharT> const& a, negated_char_parser<range<CharT> > const& b)
|
---|
374 | {
|
---|
375 | return a & chset<CharT>(b);
|
---|
376 | }
|
---|
377 |
|
---|
378 | //////////////////////////////////
|
---|
379 | template <typename CharT>
|
---|
380 | inline chset<CharT>
|
---|
381 | operator-(chset<CharT> const& a, negated_char_parser<range<CharT> > const& b)
|
---|
382 | {
|
---|
383 | return a - chset<CharT>(b);
|
---|
384 | }
|
---|
385 |
|
---|
386 | //////////////////////////////////
|
---|
387 | template <typename CharT>
|
---|
388 | inline chset<CharT>
|
---|
389 | operator^(chset<CharT> const& a, negated_char_parser<range<CharT> > const& b)
|
---|
390 | {
|
---|
391 | return a ^ chset<CharT>(b);
|
---|
392 | }
|
---|
393 |
|
---|
394 | //////////////////////////////////
|
---|
395 | template <typename CharT>
|
---|
396 | inline chset<CharT>
|
---|
397 | operator|(negated_char_parser<range<CharT> > const& a, chset<CharT> const& b)
|
---|
398 | {
|
---|
399 | return chset<CharT>(a) | b;
|
---|
400 | }
|
---|
401 |
|
---|
402 | //////////////////////////////////
|
---|
403 | template <typename CharT>
|
---|
404 | inline chset<CharT>
|
---|
405 | operator&(negated_char_parser<range<CharT> > const& a, chset<CharT> const& b)
|
---|
406 | {
|
---|
407 | return chset<CharT>(a) & b;
|
---|
408 | }
|
---|
409 |
|
---|
410 | //////////////////////////////////
|
---|
411 | template <typename CharT>
|
---|
412 | inline chset<CharT>
|
---|
413 | operator-(negated_char_parser<range<CharT> > const& a, chset<CharT> const& b)
|
---|
414 | {
|
---|
415 | return chset<CharT>(a) - b;
|
---|
416 | }
|
---|
417 |
|
---|
418 | //////////////////////////////////
|
---|
419 | template <typename CharT>
|
---|
420 | inline chset<CharT>
|
---|
421 | operator^(negated_char_parser<range<CharT> > const& a, chset<CharT> const& b)
|
---|
422 | {
|
---|
423 | return chset<CharT>(a) ^ b;
|
---|
424 | }
|
---|
425 |
|
---|
426 | ///////////////////////////////////////////////////////////////////////////////
|
---|
427 | //
|
---|
428 | // negated_char_parser<chlit> <--> chset free operators implementation
|
---|
429 | //
|
---|
430 | ///////////////////////////////////////////////////////////////////////////////
|
---|
431 | template <typename CharT>
|
---|
432 | inline chset<CharT>
|
---|
433 | operator|(chset<CharT> const& a, negated_char_parser<chlit<CharT> > const& b)
|
---|
434 | {
|
---|
435 | return a | chset<CharT>(b);
|
---|
436 | }
|
---|
437 |
|
---|
438 | //////////////////////////////////
|
---|
439 | template <typename CharT>
|
---|
440 | inline chset<CharT>
|
---|
441 | operator&(chset<CharT> const& a, negated_char_parser<chlit<CharT> > const& b)
|
---|
442 | {
|
---|
443 | return a & chset<CharT>(b);
|
---|
444 | }
|
---|
445 |
|
---|
446 | //////////////////////////////////
|
---|
447 | template <typename CharT>
|
---|
448 | inline chset<CharT>
|
---|
449 | operator-(chset<CharT> const& a, negated_char_parser<chlit<CharT> > const& b)
|
---|
450 | {
|
---|
451 | return a - chset<CharT>(b);
|
---|
452 | }
|
---|
453 |
|
---|
454 | //////////////////////////////////
|
---|
455 | template <typename CharT>
|
---|
456 | inline chset<CharT>
|
---|
457 | operator^(chset<CharT> const& a, negated_char_parser<chlit<CharT> > const& b)
|
---|
458 | {
|
---|
459 | return a ^ chset<CharT>(b);
|
---|
460 | }
|
---|
461 |
|
---|
462 | //////////////////////////////////
|
---|
463 | template <typename CharT>
|
---|
464 | inline chset<CharT>
|
---|
465 | operator|(negated_char_parser<chlit<CharT> > const& a, chset<CharT> const& b)
|
---|
466 | {
|
---|
467 | return chset<CharT>(a) | b;
|
---|
468 | }
|
---|
469 |
|
---|
470 | //////////////////////////////////
|
---|
471 | template <typename CharT>
|
---|
472 | inline chset<CharT>
|
---|
473 | operator&(negated_char_parser<chlit<CharT> > const& a, chset<CharT> const& b)
|
---|
474 | {
|
---|
475 | return chset<CharT>(a) & b;
|
---|
476 | }
|
---|
477 |
|
---|
478 | //////////////////////////////////
|
---|
479 | template <typename CharT>
|
---|
480 | inline chset<CharT>
|
---|
481 | operator-(negated_char_parser<chlit<CharT> > const& a, chset<CharT> const& b)
|
---|
482 | {
|
---|
483 | return chset<CharT>(a) - b;
|
---|
484 | }
|
---|
485 |
|
---|
486 | //////////////////////////////////
|
---|
487 | template <typename CharT>
|
---|
488 | inline chset<CharT>
|
---|
489 | operator^(negated_char_parser<chlit<CharT> > const& a, chset<CharT> const& b)
|
---|
490 | {
|
---|
491 | return chset<CharT>(a) ^ b;
|
---|
492 | }
|
---|
493 |
|
---|
494 | #endif // BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
---|
495 |
|
---|
496 | ///////////////////////////////////////////////////////////////////////////////
|
---|
497 | //
|
---|
498 | // anychar_parser <--> chset free operators
|
---|
499 | //
|
---|
500 | // Where a is chset and b is a anychar_parser, and vice-versa, implements:
|
---|
501 | //
|
---|
502 | // a | b, a & b, a - b, a ^ b
|
---|
503 | //
|
---|
504 | ///////////////////////////////////////////////////////////////////////////////
|
---|
505 | namespace impl {
|
---|
506 |
|
---|
507 | template <typename CharT>
|
---|
508 | inline boost::spirit::range<CharT> const&
|
---|
509 | full()
|
---|
510 | {
|
---|
511 | static boost::spirit::range<CharT> full_(
|
---|
512 | (std::numeric_limits<CharT>::min)(),
|
---|
513 | (std::numeric_limits<CharT>::max)());
|
---|
514 | return full_;
|
---|
515 | }
|
---|
516 |
|
---|
517 | template <typename CharT>
|
---|
518 | inline boost::spirit::range<CharT> const&
|
---|
519 | empty()
|
---|
520 | {
|
---|
521 | static boost::spirit::range<CharT> empty_;
|
---|
522 | return empty_;
|
---|
523 | }
|
---|
524 | }
|
---|
525 |
|
---|
526 | //////////////////////////////////
|
---|
527 | template <typename CharT>
|
---|
528 | inline chset<CharT>
|
---|
529 | operator|(chset<CharT> const&, anychar_parser)
|
---|
530 | {
|
---|
531 | return chset<CharT>(impl::full<CharT>());
|
---|
532 | }
|
---|
533 |
|
---|
534 | //////////////////////////////////
|
---|
535 | template <typename CharT>
|
---|
536 | inline chset<CharT>
|
---|
537 | operator&(chset<CharT> const& a, anychar_parser)
|
---|
538 | {
|
---|
539 | return a;
|
---|
540 | }
|
---|
541 |
|
---|
542 | //////////////////////////////////
|
---|
543 | template <typename CharT>
|
---|
544 | inline chset<CharT>
|
---|
545 | operator-(chset<CharT> const&, anychar_parser)
|
---|
546 | {
|
---|
547 | return chset<CharT>();
|
---|
548 | }
|
---|
549 |
|
---|
550 | //////////////////////////////////
|
---|
551 | template <typename CharT>
|
---|
552 | inline chset<CharT>
|
---|
553 | operator^(chset<CharT> const& a, anychar_parser)
|
---|
554 | {
|
---|
555 | return ~a;
|
---|
556 | }
|
---|
557 |
|
---|
558 | //////////////////////////////////
|
---|
559 | template <typename CharT>
|
---|
560 | inline chset<CharT>
|
---|
561 | operator|(anychar_parser, chset<CharT> const& /*b*/)
|
---|
562 | {
|
---|
563 | return chset<CharT>(impl::full<CharT>());
|
---|
564 | }
|
---|
565 |
|
---|
566 | //////////////////////////////////
|
---|
567 | template <typename CharT>
|
---|
568 | inline chset<CharT>
|
---|
569 | operator&(anychar_parser, chset<CharT> const& b)
|
---|
570 | {
|
---|
571 | return b;
|
---|
572 | }
|
---|
573 |
|
---|
574 | //////////////////////////////////
|
---|
575 | template <typename CharT>
|
---|
576 | inline chset<CharT>
|
---|
577 | operator-(anychar_parser, chset<CharT> const& b)
|
---|
578 | {
|
---|
579 | return ~b;
|
---|
580 | }
|
---|
581 |
|
---|
582 | //////////////////////////////////
|
---|
583 | template <typename CharT>
|
---|
584 | inline chset<CharT>
|
---|
585 | operator^(anychar_parser, chset<CharT> const& b)
|
---|
586 | {
|
---|
587 | return ~b;
|
---|
588 | }
|
---|
589 |
|
---|
590 | ///////////////////////////////////////////////////////////////////////////////
|
---|
591 | //
|
---|
592 | // nothing_parser <--> chset free operators implementation
|
---|
593 | //
|
---|
594 | ///////////////////////////////////////////////////////////////////////////////
|
---|
595 | template <typename CharT>
|
---|
596 | inline chset<CharT>
|
---|
597 | operator|(chset<CharT> const& a, nothing_parser)
|
---|
598 | {
|
---|
599 | return a;
|
---|
600 | }
|
---|
601 |
|
---|
602 | //////////////////////////////////
|
---|
603 | template <typename CharT>
|
---|
604 | inline chset<CharT>
|
---|
605 | operator&(chset<CharT> const& /*a*/, nothing_parser)
|
---|
606 | {
|
---|
607 | return impl::empty<CharT>();
|
---|
608 | }
|
---|
609 |
|
---|
610 | //////////////////////////////////
|
---|
611 | template <typename CharT>
|
---|
612 | inline chset<CharT>
|
---|
613 | operator-(chset<CharT> const& a, nothing_parser)
|
---|
614 | {
|
---|
615 | return a;
|
---|
616 | }
|
---|
617 |
|
---|
618 | //////////////////////////////////
|
---|
619 | template <typename CharT>
|
---|
620 | inline chset<CharT>
|
---|
621 | operator^(chset<CharT> const& a, nothing_parser)
|
---|
622 | {
|
---|
623 | return a;
|
---|
624 | }
|
---|
625 |
|
---|
626 | //////////////////////////////////
|
---|
627 | template <typename CharT>
|
---|
628 | inline chset<CharT>
|
---|
629 | operator|(nothing_parser, chset<CharT> const& b)
|
---|
630 | {
|
---|
631 | return b;
|
---|
632 | }
|
---|
633 |
|
---|
634 | //////////////////////////////////
|
---|
635 | template <typename CharT>
|
---|
636 | inline chset<CharT>
|
---|
637 | operator&(nothing_parser, chset<CharT> const& /*b*/)
|
---|
638 | {
|
---|
639 | return impl::empty<CharT>();
|
---|
640 | }
|
---|
641 |
|
---|
642 | //////////////////////////////////
|
---|
643 | template <typename CharT>
|
---|
644 | inline chset<CharT>
|
---|
645 | operator-(nothing_parser, chset<CharT> const& /*b*/)
|
---|
646 | {
|
---|
647 | return impl::empty<CharT>();
|
---|
648 | }
|
---|
649 |
|
---|
650 | //////////////////////////////////
|
---|
651 | template <typename CharT>
|
---|
652 | inline chset<CharT>
|
---|
653 | operator^(nothing_parser, chset<CharT> const& b)
|
---|
654 | {
|
---|
655 | return b;
|
---|
656 | }
|
---|
657 |
|
---|
658 | ///////////////////////////////////////////////////////////////////////////////
|
---|
659 | }} // namespace boost::spirit
|
---|
660 |
|
---|
661 | #endif
|
---|
662 |
|
---|