AnsiTextMalloc

A basic implementation using malloc backed memory.

This implementation disables copying for AnsiText, as it makes use of RAII to cleanup its resources.

Sinks should keep in mind that they are being passed manually managed memory, so it should be considered an error if the sink stores any provided slices outside of its .put function. i.e. Copy the data, don't keep it around unless you know what you're doing.

alias AnsiTextMalloc = AnsiText!AnsiTextMallocImplementation

Meta