Enum member isSaveableLowLevelParser
Checks whether its argument is a saveable parser.
A saveable parser is a parser enhanced with a save
method analogous to the save
method of ForwardRange
s.
Declaration
enum isSaveableLowLevelParser(P) = isLowLevelParser!P && isForwardRange!P;
Parameters
Name | Description |
---|---|
P | the type to be tested |
Returns
true
if P is a parser (as specified by isLowLevelParser
) and also supports the
save
method as specified here; false
otherwise
Specification
The type shall support at least:
- all methods and aliases specified by
isLowLevelParser
P save()
: returns an independent copy of the current parser; the copy must start at the position the original parser was when this method was called; the two copies shall be independent, in that advancing one does not advance the other.
Authors
Lodovico Giaretta
Copyright
Copyright Lodovico Giaretta 2016 --