[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'Maps' (#lazutils)

TMapLink

Record type used to build the linked list for items in the map.

Declaration

Source position: maps.pp line 48

type TMapLink = record

  Previous: PMapItem;

  

Pointer to the previous item in the linked list for a map.

  Next: PMapItem;

  

Pointer to the Next item in the linked list for a map.

end;

Description

TMapLink is a record type with members that contain Pointers to the Previous and Next items in the linked list for the map. TMapLink is used to implement TMapItem.


Version 3.2 Generated 2024-02-25 Home