Simple implementation of the text stream to store output in the memory as sequence of stream elements in UTF-8 text encoding and using LF as line separator.
type Memory_UTF8_Output_Stream is
limited new VSS.Text_Streams.Output_Text_Stream with record
Buffer : VSS.Stream_Element_Vectors.Stream_Element_Vector;
end record;