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").