Ingo Ruhnke 4d8096c223 Remove obsolete .appveyor.yml | пре 5 месеци | |
---|---|---|
benchmarks | пре 5 година | |
external | пре 1 година | |
include | пре 3 година | |
mk | пре 1 година | |
pkgconfig | пре 5 година | |
src | пре 1 година | |
tests | пре 1 година | |
.clang-tidy | пре 4 година | |
.gitattributes | пре 2 година | |
.gitignore | пре 2 година | |
.gitmodules | пре 2 година | |
CMakeLists.txt | пре 1 година | |
LICENSE.txt | пре 9 година | |
README.md | пре 9 година | |
VERSION | пре 2 година | |
flake.lock | пре 5 месеци | |
flake.nix | пре 5 месеци | |
logo.png | пре 9 година | |
logo.svg | пре 9 година | |
sexp-config.cmake.in | пре 2 година | |
sexpcpp.nix | пре 2 година |
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").