yodel/parser

Types

pub type ParseFunction =
  fn(String) -> Result(properties.Properties, errors.ConfigError)
pub type Parser {
  Parser(
    name: String,
    parse: fn(String) -> Result(
      properties.Properties,
      errors.ConfigError,
    ),
  )
}

Constructors

Values

pub fn parse(
  from content: String,
  with format: options.Format,
) -> Result(properties.Properties, errors.ConfigError)
Search Document