Documentation
¶
Overview ¶
An EDN (http://edn-format.org) parser for Go.
The main entry points for this library are ParseString(string) and ParseReader(io.Reader), which both return a representation of the data according to this library's Value interface.
edn.ParseString(`(:a [123 #{5 7 3}] {"string" 123})`)
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DumpString ¶
DumpString accepts any EDN value and will return the EDN string representation.
func ParseReader ¶
ParseReader parses EDN from an io.Reader.
Data is returned as a Value in the first return value. The second return value is nil on successful parses, and an error on unsuccessful parses (e.g. syntax error).
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.