UnexpectedEnd

scallion.Parsing.UnexpectedEnd
case class UnexpectedEnd[A](rest: Parser[A]) extends ParseResult[A]

Indicates that end of input was unexpectedly encountered.

The syntax for subsequent input is provided.

Value parameters

syntax

Syntax at the end of input.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait ParseResult[A]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def getValue: Option[A]

Returns the parsed value, if any.

Returns the parsed value, if any.

Attributes

Inherited from:
ParseResult
def map[B](f: A => B): ParseResult[B]

Applies the given function on the parsed result.

Applies the given function on the parsed result.

Attributes

Inherited from:
ParseResult
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product