Parser

io.circe.yaml.Parser
See theParser companion object
final case class Parser(maxAliasesForCollections: Int, nestingDepthLimit: Int, codePointLimit: Int) extends Parser

Attributes

Companion
object
Source
Parser.scala
Graph
Supertypes
trait Product
trait Equals
trait Parser
trait Parser
trait Serializable
class Object
trait Matchable
class Any
Show all

Members list

Value members

Constructors

def this(maxAliasesForCollections: Int)

Attributes

Source
Parser.scala

Concrete methods

def copy(maxAliasesForCollections: Int, nestingDepthLimit: Int, codePointLimit: Int): Parser

Attributes

Source
Parser.scala
def copy(maxAliasesForCollections: Int): Parser

Attributes

Source
Parser.scala
final def decode[A : Decoder](input: Reader): Either[Error, A]

Attributes

Source
Parser.scala
final def decodeAccumulating[A : Decoder](input: Reader): ValidatedNel[Error, A]

Attributes

Source
Parser.scala
def parse(yaml: Reader): Either[ParsingFailure, Json]

Parse YAML from the given Reader, returning either ParsingFailure or Json

Parse YAML from the given Reader, returning either ParsingFailure or Json

Attributes

Returns
Source
Parser.scala

Attributes

Source
Parser.scala

Attributes

Source
Parser.scala

Inherited methods

final def decode[A : Decoder](input: String): Either[Error, A]

Attributes

Inherited from:
Parser
Source
Parser.scala

Attributes

Inherited from:
Parser
Source
Parser.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product