fast_double_parser
Fast function to parse strings into double (binary64) floating-point values, enforces the RFC 7159 (JSON standard) grammar: 4x faster than strtod
File Explorer
- build.sh
- Dockerfile
- parse_number_fuzzer.cpp
- project.yaml
- README.md
- cflite_pr.yml
- codeql.yml
- msys2-clang.yml
- msys2.yml
- rhub.yml
- ubuntu.yml
- vs17-ci.yml
- vs17-clang-ci.yml
- canada.txt
- abseil-cpp
- double-conversion
- benchmark.cpp
- fast_double_parser.h
- table_generation.py
- bogus.cpp
- rebogus.cpp
- unit.cpp
- .appveyor.yml
- .cirrus.yml
- .drone.yml
- .gitignore
- .gitmodules
- BUILD.bazel
- CMakeLists.txt
- fast_double_parser-config.cmake.in
- LICENSE
- LICENSE.BSL
- Makefile
- MODULE.bazel
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
ctest
View Details ▼
ctest
CMake test driver program.
ctest
Run all tests in the current CMake build directory:
ctest {{[-j|--parallel]}} 4
Run all tests defined in the CMake build directory, executing 4 [j]obs at a time in parallel:
ctest {{[-j|--parallel]}}
Run all tests on all processor cores:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
# Project Badges
-
MSYS2-CI
-
Ubuntu 22.04 Visit
