prettyprinter
prettyprinter copied to clipboard
Rendering of `SLine` could be optimized
Currently this usually involves the allocation of a fresh Text
containing multiple spaces via textSpaces
. It would probably be better to use a slice of a pre-allocated buffer.
Maybe the newline could/should even be included as the first byte of that buffer?!