Parsed

fastparse.Parsed
See theParsed companion object
sealed abstract class Parsed[+T](val isSuccess: Boolean)

The outcome of a ParsingRun run, either a success (with value and index) or failure (with associated debugging metadata to help figure out what went wrong).

Doesn't contain any information not already present in ParsingRun, but packages it up nicely in an immutable case class that's easy for external code to make use of.

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Failure
class Success[T]

Members list

Concise view

Value members

Abstract methods

def fold[V](onFailure: (String, Int, Extra) => V, onSuccess: (T, Int) => V): V
def get: Success[T]

Concrete fields

val isSuccess: Boolean