A S-Expression Parser for C++

Ingo Ruhnke 4d8096c223 Remove obsolete .appveyor.yml před 5 měsíci
benchmarks 9cbadbde87 Fix clang-tidy warnings před 5 roky
external 3883208051 Update flake.nix to nixos-23.05 před 1 rokem
include 092d579ab6 Add forward declarations header před 3 roky
mk a15f2c45c0 Add and use mk/cmake/TinyCMMC.cmake před 1 rokem
pkgconfig 17329bb93b Add pkgconfig file před 5 roky
src 6829f58196 Remove USE_LOCALE, no longer necessary with C++20 před 1 rokem
tests 6829f58196 Remove USE_LOCALE, no longer necessary with C++20 před 1 rokem
.clang-tidy 03cffbd19a Use external/cmake-modules/ClangTidy.cmake instead of manually před 4 roky
.gitattributes 6810961ea2 Add VERSION file před 2 roky
.gitignore ade5eb3193 Reorganize flake.nix to allow cross-compiling před 2 roky
.gitmodules 3ba590de5e Update flake.nix to nixos-22.05 před 2 roky
CMakeLists.txt a15f2c45c0 Add and use mk/cmake/TinyCMMC.cmake před 1 rokem
LICENSE.txt 9beb751a57 Added copy of GPLv3 před 9 roky
README.md 4ebe3e1a2a Added use_arrays flag to Parser to handle all lists as arrays před 9 roky
VERSION 6810961ea2 Add VERSION file před 2 roky
flake.lock a6e5a8ec61 Update to nixos-24.05 před 5 měsíci
flake.nix a6e5a8ec61 Update to nixos-24.05 před 5 měsíci
logo.png e5c0ae69da Added logo před 9 roky
logo.svg e5c0ae69da Added logo před 9 roky
sexp-config.cmake.in 9318a730e1 Use @PACKAGE_INIT@ in sexp-config.cmake.in před 2 roky
sexpcpp.nix ade5eb3193 Reorganize flake.nix to allow cross-compiling před 2 roky

README.md

Build Status

SExp - A S-Expression Parser for C++

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;
}

Arrays vs Cons

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);

C++ locales

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