Ingo Ruhnke 4d8096c223 Remove obsolete .appveyor.yml | před 5 měsíci | |
---|---|---|
benchmarks | před 5 roky | |
external | před 1 rokem | |
include | před 3 roky | |
mk | před 1 rokem | |
pkgconfig | před 5 roky | |
src | před 1 rokem | |
tests | před 1 rokem | |
.clang-tidy | před 4 roky | |
.gitattributes | před 2 roky | |
.gitignore | před 2 roky | |
.gitmodules | před 2 roky | |
CMakeLists.txt | před 1 rokem | |
LICENSE.txt | před 9 roky | |
README.md | před 9 roky | |
VERSION | před 2 roky | |
flake.lock | před 5 měsíci | |
flake.nix | před 5 měsíci | |
logo.png | před 9 roky | |
logo.svg | před 9 roky | |
sexp-config.cmake.in | před 2 roky | |
sexpcpp.nix | před 2 roky |
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").