Keyword: ACCESS
The access keyword declares an access subtype. Access subtypes are used like pointers to refer to other objects. The objects which an access subtype can reference are array objects, record objects, and scalar type objects.
An access declaration includes the reserved word access, followed by a subtype.
Example
type AddressPtr is access RAM;
LRM
3.3
See also