Ignore:
Timestamp:
Oct 28, 2010, 4:52:53 PM (14 years ago)
Author:
george
Message:
  • Added: Generic class TGDictionary and TGPair. Specialized class TDictionaryString.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Generics/TemplateGenerics/Generic/ListInterface.tpl

    r71 r72  
    2626    // Many items
    2727    procedure MoveItems(CurIndex, NewIndex, Count: TListIndex);
    28     procedure Swap(Index1, Index2: TListIndex);
     28    procedure Exchange(Index1, Index2: TListIndex);
    2929    // One item
    3030    function Add(Item: TListItem): TListIndex;
    3131    procedure Delete(Index: TListIndex);
    32     procedure Exchange(Index1, Index2: TListIndex);
    3332    function Extract(Item: TListItem): TListItem;
    3433    function First: TListItem;
     
    4847    property Count: TListIndex read GetCount write SetCount;
    4948    // Additional
    50     procedure SetArray(Values: array of TListItem);
     49    procedure AddArray(Values: array of TListItem);
    5150  end;
Note: See TracChangeset for help on using the changeset viewer.