Appender instantiations for building strings.
Default implementation of put for dchars
Default implementation of put for numbers (uses decimal ASCII)
Write a number n in decimal to sink.
Sink which simply copies data to a pointer and advances it. No reallocation, no bounds check - unsafe.
Sink which simply counts how much data is written to it.
Output range which writes to a static buffer.
Calls putter to count the length of the output, allocates a buffer of that size, and then calls putter a second time to write to the buffer. Returns the buffer.
Resolves to true when T can accept strings via .put.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Fast string building with minimum heap allocations.