Success

scala.meta.parsers.Parsed.Success
case class Success[+T](tree: T) extends Parsed[T]

Attributes

Graph
Supertypes
trait Parsed[T]
trait Adt
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any

Inherited methods

def fold[A](fe: Error => A, ft: T => A): A

Attributes

Inherited from:
Parsed
def get: T

Attributes

Inherited from:
Parsed
def getOrElse[U >: T](alt: => U): U

Attributes

Inherited from:
Parsed
def orElse[U >: T](alt: => Parsed[U]): Parsed[U]

Attributes

Inherited from:
Parsed
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def toEither: Either[Error, T]

Attributes

Inherited from:
Parsed
def toOption: Option[T]

Attributes

Inherited from:
Parsed