StringOps
org.virtuslab.yaml.`package`.StringOps
final implicit class StringOps(val str: String) extends AnyVal
Attributes
- Source
- Yaml.scala
- Graph
-
- Supertypes
-
class AnyValtrait Matchableclass Any
Members list
Value members
Concrete methods
Parse YAML from the given String, returning either YamlError or T.
Parse YAML from the given String, returning either YamlError or T.
According to the specification:
- Parser takes input string and produces sequence of events
- then Composer produces a representation graph from events
- finally YamlDecoder (construct phase from the YAML spec) constructs data type T from the YAML representation.
Attributes
- Source
- Yaml.scala
Parse YAML from the given String, returning either YamlError or a list of T. The error will be the first failure in parsing or converting to T.
Parse YAML from the given String, returning either YamlError or a list of T. The error will be the first failure in parsing or converting to T.
Attributes
- Source
- Yaml.scala
Attributes
- Source
- Yaml.scala
Concrete fields
Attributes
- Source
- Yaml.scala
In this article