DxlObject

The DxlObject type is similar to the C struct. This data type allows you to store related values of any type. Used together with skip lists, this allows you to build efficient and easy to use data structures.

Example usage:

DxlObject d = new()

d->"Name" = "Tony"
d->"Age"  = 21  // I wish

myAge = (int d->"Age")
myName = (string d->"Name")

delete(d)

A more complete example of how to use the DxlObject data type in a proper application can be seen in the History Viewer script.

Go to History Viewer page.