Attributes
Members list
Type members
Classlikes
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Singletontrait Producttrait Mirrortrait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
- Self type
-
End.type
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Singletontrait Producttrait Mirrortrait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
- Self type
-
Index.type
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- trait
- Supertypes
-
trait Sumtrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
ParserError.type
Type representing a parser error
Type representing a parser error
Attributes
- Companion
- object
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
class AllBranchesFailed[Err]class Failure[Err]class NotConsumedAll[Err]class UnexpectedEndOfInputclass UnknownFailure
- Self type
-
ParserError[Err]
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Inherited and Abstract types
The names of the product elements
The names of the product elements
Attributes
- Inherited from:
- Mirror
The name of the type
The name of the type
Attributes
- Inherited from:
- Mirror
Value members
Concrete methods
Parser that consumes the exact character 'value' or fails if it did not match, and results in the unit value.
Parser that consumes the exact character 'value' or fails if it did not match, and results in the unit value.
Attributes
Parser that consumes the exact character 'value' or fails with 'failure' if it did not match, and results in the unit value
Parser that consumes the exact character 'value' or fails with 'failure' if it did not match, and results in the unit value
Attributes
Parser that consumes a single character and succeeds with it if it is one of the provided 'chars'
Parser that consumes a single character and succeeds with it if it is one of the provided 'chars'
Attributes
Parser that consumes a single character and succeeds with it if it is NOT one of the provided 'chars'
Parser that consumes a single character and succeeds with it if it is NOT one of the provided 'chars'
Attributes
Parser that always fails with 'failure'
Parser that always fails with 'failure'
Attributes
Parser that consumes a single character, fails if it is 'value', otherwise results with it
Parser that consumes a single character, fails if it is 'value', otherwise results with it
Attributes
Parser that consumes a single character, fails with 'failure' if it is 'value', otherwise results with it
Parser that consumes a single character, fails with 'failure' if it is 'value', otherwise results with it
Attributes
Parser that executes a regular expression on the input and results in the chunk of the parsed characters, or fails with 'failure'.
Parser that executes a regular expression on the input and results in the chunk of the parsed characters, or fails with 'failure'.
Attributes
Parser that executes a regular expression on the input and results in the last parsed character, or fails with 'failure'. Useful for regexes that are known to parse a single character.
Parser that executes a regular expression on the input and results in the last parsed character, or fails with 'failure'. Useful for regexes that are known to parse a single character.
Attributes
Parser that executes a regular expression on the input but discards its result, and fails with 'failure' if the regex fails
Parser that executes a regular expression on the input but discards its result, and fails with 'failure' if the regex fails
Attributes
Parser that requires a given string 'str' and in case it could read it, results in 'value'
Parser that requires a given string 'str' and in case it could read it, results in 'value'
Attributes
Parser that does not consume any input and succeeds with 'value'
Parser that does not consume any input and succeeds with 'value'
Attributes
Parser that executes a regular expression on the input and results in the chunk of the parsed characters. The regex is supposed to never fail.
Parser that executes a regular expression on the input and results in the chunk of the parsed characters. The regex is supposed to never fail.
Attributes
Parser that executes a regular expression on the input and results in the last parsed character. The regex is supposed to never fail. Useful for regexes that are known to parse a single character.
Parser that executes a regular expression on the input and results in the last parsed character. The regex is supposed to never fail. Useful for regexes that are known to parse a single character.
Attributes
Parser that executes a regular expression on the input but discards its result. The regex is supposed to never fail.
Parser that executes a regular expression on the input but discards its result. The regex is supposed to never fail.
Attributes
Concrete fields
Parser of a single alpha-numeric character
Parser of a single alpha-numeric character
Attributes
Parser that consumes a single character and returns it
Parser that consumes a single character and returns it
Attributes
Parser that consumes the whole input and captures it as a string
Parser that consumes the whole input and captures it as a string
Attributes
Parser of a single digit
Parser of a single digit
Attributes
Parser that only succeeds if the input stream has been consumed fully.
Parser that only succeeds if the input stream has been consumed fully.
This can be used to require that a parser consumes the full input.
Attributes
Parser that consumes and discards all the remaining input
Parser that consumes and discards all the remaining input
Attributes
Parser that results in the current input stream position
Parser that results in the current input stream position
Attributes
Parser of a single letter
Parser of a single letter
Attributes
Parser that does not consume the input and results in unit
Parser that does not consume the input and results in unit
Attributes
Parser of a single whitespace character
Parser of a single whitespace character