Class TLongIntList

Unit

Declaration

type TLongIntList = class(specialize TStructList<LongInt>)

Description

No description available, ancestor TStructList description follows

List of structures. This is just TList class from Generics.Collections, with some useful helpers.

Hierarchy

Overview

Methods

Public function Max: LongInt;
Public function Sum: LongInt;
Public procedure DeleteRange(const Index: TListSize; DelCount: TListSize = 1);
Public procedure AddDuplicate(const Item: LongInt; const DuplicateCount: TListSize);
Public function Equals(SecondValue: TObject): boolean; override;

Description

Methods

Public function Max: LongInt;
 
Public function Sum: LongInt;
 
Public procedure DeleteRange(const Index: TListSize; DelCount: TListSize = 1);
 
Public procedure AddDuplicate(const Item: LongInt; const DuplicateCount: TListSize);

Add given Item a number of times to the list.

Public function Equals(SecondValue: TObject): boolean; override;

Does the SecondValue have equal length and content. This method does the same thing as PerfectlyEquals in case of LongInt list, that are always compared perfectly.


Generated by PasDoc 0.16.0.