read_eon.Rd
Reads an eon file from disk and parses it into the corresponding R representation.
read_eon(path) read_eon(path)
Path to an eon file.
An R object representing the eon file's contents.
tmp <- tempfile(fileext = '.eon') write_eon(list(x = 1L, y = 'hello'), tmp) read_eon(tmp) #> $x #> [1] 1 #> #> $y #> [1] "hello" #>