<odict> create a dict object

name
odict
xml namespace
http://moyaproject.com

Like <dict> but creates an ordered dictionary (maintains the order data was inserted)/

Example

<dict dst="species">
    <str dst="Bibo">Hobbit</dst>
    <str dst="Gandalph">Wizard</dst>
</dict>
<!-- Alternatively -->
<dict dst="species" let:Bilbo="Hobbit" let:Gandalph="Wizard" />
<echo>Bilbo is a ${species['Bilbo']}</echo>
inherited attributes
name purpose type required? default choices
default Default return for missing keys expression No None
dst Destination reference No
if Conditional expression expression No yes
sequence Optional sequence of key / value pairs to initialize the dict expression No None
value Value expression No None