We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InputBuffer
Reader
The InputBuffer is basically the character sequence used in a parsing run. Parboiled could build such buffers from plain Strings or char arrays.
String
char
Grappa added one for CharSequences (which basically obsoletes the runs over Strings since String implements CharSequence).
CharSequence
What about creating an InputBuffer over a Reader? And even from an InputStream (but then the encoding would be required to be specified)?
InputStream
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
InputBuffer
is basically the character sequence used in a parsing run. Parboiled could build such buffers from plainString
s orchar
arrays.Grappa added one for
CharSequence
s (which basically obsoletes the runs overString
s sinceString
implementsCharSequence
).What about creating an
InputBuffer
over aReader
? And even from anInputStream
(but then the encoding would be required to be specified)?The text was updated successfully, but these errors were encountered: