From bb738c4c264cb4e860e09160b00e5536a310c854 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 15 Apr 2018 09:13:44 -0700 Subject: [PATCH] Remove section on Write API since it's being superceeded by compile-time Format API --- doc/index.rst | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index ea70c46e..b7b2fa86 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -93,20 +93,6 @@ literal operators, they must be made visible with the directive ``using namespace fmt::literals;``. Note that this brings in only ``_a`` and ``_format`` but nothing else from the ``fmt`` namespace. -.. _write-api: - -Write API ---------- - -The concatenation-based Write API (experimental) provides a `fast -`_ -stateless alternative to IOStreams: - -.. code:: c++ - - fmt::MemoryWriter out; - out << "The answer in hexadecimal is " << hex(42); - .. _safety: Safety