//! `ESExpr` text format parser.
extern crate alloc;
extern crate core;
use Vec;
use ESExpr;
/// Underlying nom parser.
/// Parse a string into an `ESExpr`.
///
/// # Errors
/// Returns `Err` when parsing fails.
/// Parse a string into multiple `ESExpr`s.
///
/// # Errors
/// Returns `Err` when parsing fails.