Buffer
[Raku LibXML Project] / [LibXML-Writer Module] / Writer :: Buffer
class LibXML::Writer::Buffer
In-memory buffer construction
Synopsis
use LibXML::Writer::Buffer;
my LibXML::Writer::Buffer:D $writer .= new;
$writer.write: 'elem' => ['text'];
say $writer.Str; # <elem>text</elem>
say $writer.Blob; # Buf[uint8]:0x<3C 65 6C ...>
Description
This output class writes to an in-memory buffer.