From d1369d4bed1c8449fc7e6cda50b0372b342c3b01 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 13 Feb 2014 09:53:01 -0800 Subject: [PATCH] Upate readme. --- README.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 4a913169..a23db7d0 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,9 @@ Features * Support for user-defined types. * High speed: performance of the format API is close to that of glibc's `printf `__ - and better than performance of IOStreams. See `Speed tests`_. + and better than performance of IOStreams. See `Speed tests`_ and the + `Fast integer to string conversion in C++ + `_. * Small code size both in terms of source code (format consists of a single header file and a single source file) and compiled code. See `Compile time and code bloat`_. @@ -211,7 +213,10 @@ Boost Spirit.Karma This is not really a formatting library but I decided to include it here for completeness. As IOStreams it suffers from the problem of mixing -verbatim text with arguments, but is faster. +verbatim text with arguments. The library is pretty fast, but slower +on integer formatting than ``fmt::Writer`` on Karma's own benchmark, +see `Fast integer to string conversion in C++ +`__. Benchmarks ----------