View on GitHub

LibXML-raku

Raku bindings to the libxml2 native library

[Raku LibXML Project] / [LibXML Module] / Dict

Synopsis

my LibXML::Dict $dict .= new;
$dict.see('a');
$dict.see: <x y z>;
say $dict.seen('a'); # True
say $dict.seen('b'); # False
say $dict<a>:exists; # True
say $dict<b>:exists; # False
say $dict.elems; # a x y z

Description

LibXML::Dict binds to the xmlDict data structure, which is used to uniquely store strings.

Please see also LibXML::HashMap, for a more general-purpose associative interface.