The SExpParser
structure implements a parser for S-Expressions.
Synopsis
structure SExpParser
Interface
val parse : TextIO.instream -> SExp.value list
val parseFile : string -> SExp.value list
Description
val parse : TextIO.instream -> SExp.value list
-
parse inS
parses a sequence of S-Expressions from the input streaminS
. TheFail
exception is raised if a syntax error is encountered. val parseFile : string -> SExp.value list
-
parse f
parses a sequence of S-Expressions from the filef
. TheFail
exception is raised if a syntax error is encountered.