A S-Expression Parser for C++

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

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