Ingo Ruhnke 4d8096c223 Remove obsolete .appveyor.yml | vor 6 Monaten | |
---|---|---|
benchmarks | vor 5 Jahren | |
external | vor 1 Jahr | |
include | vor 3 Jahren | |
mk | vor 1 Jahr | |
pkgconfig | vor 5 Jahren | |
src | vor 1 Jahr | |
tests | vor 1 Jahr | |
.clang-tidy | vor 4 Jahren | |
.gitattributes | vor 2 Jahren | |
.gitignore | vor 2 Jahren | |
.gitmodules | vor 2 Jahren | |
CMakeLists.txt | vor 1 Jahr | |
LICENSE.txt | vor 9 Jahren | |
README.md | vor 9 Jahren | |
VERSION | vor 2 Jahren | |
flake.lock | vor 6 Monaten | |
flake.nix | vor 6 Monaten | |
logo.png | vor 9 Jahren | |
logo.svg | vor 9 Jahren | |
sexp-config.cmake.in | vor 2 Jahren | |
sexpcpp.nix | vor 2 Jahren |
SExp is an S-Expression parser for C++.
Example Code:
sexp::Value value = sexp::Parser::from_string("(1 2 3 4 5)")
sexpr::Value const& head = value.get_car();
sexpr::Value const& tail = value.get_cdr();
if (head.is_integer())
{
std::cout << head.as_int() << std::endl;
}
When dealing with large amounts of data the classic Scheme list comes with quite abit of a performance penentaly, for this reason SExp allows you to interpret all list as arrays:
sexp::Parser::from_stream(fin, sexp::Parser::USE_ARRAYS);
If C++ locales are used in your code, compile with:
cmake -DSEXP_USE_LOCALE=ON
Otherwise the input and output functions will produce incorrect results (i.e. "1,5" instead of "1.5").