[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Generic array definition
Source position: syshelph.inc line 4
type TArray = array of T; |
TArray is a generic array. It can be used to define dynamic arrays in generic functions or classes.
This definition is provided for Delphi compatibility only, it is not needed in Free Pascal, where 2 array types are equal if their element types are equal.
|
Dynamic array of strings |