Fast and exact implementation of the C++ from_chars functions for number types: 4x to 10x faster than strtod, part of GCC 12, Chromium, Redis and WebKit/Safari
2026-06-14 13:56:21 +00:00
.github new site 2026-05-27 12:43:38 -04:00
assets Deploy docs for version 8.2.10 2026-06-14 13:56:21 +00:00
.nojekyll Deploy docs for version 8.2.5 2026-05-27 18:38:11 +00:00
index.html Deploy docs for version 8.2.10 2026-06-14 13:56:21 +00:00
README.md Deploy docs for version 8.2.10 2026-06-14 13:56:21 +00:00

fast_float website

The source for https://fastfloat.github.io/fast_float/.

Static HTML, CSS, and a small JS file — no build step required. To preview locally, serve this directory with any static file server, for example:

python3 -m http.server -d docs 8080
# then open http://localhost:8080/

How the version number stays current

The displayed release version is kept fresh by two independent mechanisms:

  1. Build-time substitution. The Deploy GitHub Pages workflow (.github/workflows/pages.yml) replaces every occurrence of the literal 8.2.10 in index.html with the latest GitHub release tag before publishing. The workflow runs on every push to main that touches docs/**, on every published release, and can be dispatched manually.

  2. Client-side refresh. assets/app.js queries the GitHub Releases API on page load and overwrites any element marked with data-version. This means visitors see the very latest tag even between deploys.