Exhcl.Parser

Parses text and traslates to Elixir data structures.

Summary

Functions

Parses a string and transform data to Elixir data structures

Does as same as Exhcl.Parse.pasre/1, but raises an exception in case of fail

Functions

parse(str)

Specs

parse(binary) :: {:ok, map} | {:error, term}

Parses a string and transform data to Elixir data structures.

See README.md for more information about syntax.

parse!(str)

Specs

parse!(binary) :: map

Does as same as Exhcl.Parse.pasre/1, but raises an exception in case of fail.