VisionX represents information internally as a doubly
linked list of data elements. Each element contains a type
descriptor, forward and backward pointers to other elements,
and data. The VisionX file i/o functions read and write
these lists.
The first element of a list is always a dummy element
that is required for consistency. The element search
functions provide a set of programming tools for locating
specific list elements.
The element search functions contains the following:
VXfirst − move to first element of a list
VXlast − move to last element of a list
VXfind − find an element with a given type
VXfindin − find an element with one of a set of
types and VXbfind − search backwards for an
element with a given type.
|