TdxFastList.AddRange(TdxFastList) Method
Appends the source ordered pointer list’s content to the current list.
Declaration
procedure AddRange(AList: TdxFastList);
Parameters
Name | Type |
---|---|
AList | TdxFastList |
Remarks
Call this procedure and pass the source ordered pointer list as the AList parameter to append all stored pointers to the current list. The AddRange procedure also expands the list if its current capacity is less than the resulting number of stored pointers (that is, the Count property value).
Note
Call the Add function instead if you need to append only a single pointer to the list.
See Also