Parsed

scala.meta.parsers.Parsed
See theParsed companion object
trait Parsed[+T] extends Product, Serializable, Adt, Equals

Attributes

Companion
object
Graph
Supertypes
trait Adt
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class Error
class Success[T]

Members list

Value members

Concrete methods

def fold[A](fe: Error => A, ft: T => A): A
def get: T
def getOrElse[U >: T](alt: => U): U
def orElse[U >: T](alt: => Parsed[U]): Parsed[U]
def toEither: Either[Error, T]
def toOption: Option[T]

Inherited methods

def productElementName(n: Int): String

Attributes

Inherited from:
Product
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def productPrefix: String

Attributes

Inherited from:
Product

Inherited and Abstract methods

def canEqual(that: Any): Boolean

Attributes

Inherited from:
Equals
def productArity: Int

Attributes

Inherited from:
Product
def productElement(n: Int): Any

Attributes

Inherited from:
Product