Element.opOpAssign

Append a complete element to the interior of this element

Parameters

item Element

the item you wish to append.

Examples

Element element;
Element other = new Element("br");
element ~= other;
   // appends element representing <br />

Meta