System.Contnrs.TOrderedList.Push

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Push(AItem: Pointer): Pointer;

C++

void * __fastcall Push(void * AItem);

Properties

Type Visibility Source Unit Parent
function public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs TOrderedList

Description

Adds an item to the list.

Call Push to add an item to the list.

AItem is the item to add.

Push returns a reference to the item that was just added (AItem).

See Also