File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ And the code is easier to debug than macros.
40
40
| list(p,s) | Match list of * p* , separated by * s* .|
41
41
| one_of(set) | Success when current input symbol is one of the set.|
42
42
| none_of(set)| Success when current input symbol is none of the set.|
43
- | range(r) | Success when the range contains current input symbol.|
44
43
| is_a(predicate) | Success when predicate return true on current input symbol.|
45
44
| not_a(predicate)| Success when predicate return false on current input symbol.|
46
45
| take(n)| Read * n* symbols.|
47
46
| skip(n)| Skip * n* symbols.|
48
47
| call(pf)| Call a parser factory, can used to create recursive parsers.|
48
+ | comb(p)| Wrap parser as a combinator.|
49
49
50
50
| Parser Combinators| Description|
51
51
| --- | --- |
Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ format_strings = false
2
2
reorder_imports = true
3
3
hard_tabs = true
4
4
fn_args_layout = " Block"
5
+ max_width = 200
6
+ ideal_width = 160
You can’t perform that action at this time.
0 commit comments