Class TLongIntList
Unit
Declaration
type TLongIntList = class(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
- TObject
- TList
- TStructList
- TLongIntList
Overview
Methods
![]() |
function Max: LongInt; |
![]() |
function Sum: LongInt; |
![]() |
procedure DeleteRange(const Index: Integer; DelCount: Integer = 1); |
![]() |
procedure AddDuplicate(const Item: LongInt; const DuplicateCount: SizeInt); |
![]() |
function Equals(SecondValue: TObject): boolean; override; |
![]() |
function PerfectlyEquals(SecondValue: TObject): boolean; |
Description
Methods
![]() |
function Max: LongInt; |
![]() |
function Sum: LongInt; |
![]() |
procedure DeleteRange(const Index: Integer; DelCount: Integer = 1); |
![]() |
procedure AddDuplicate(const Item: LongInt; const DuplicateCount: SizeInt); |
|
Add given Item a number of times to the list. | |
![]() |
function Equals(SecondValue: TObject): boolean; override; |
|
Does the SecondValue have equal length and content. | |
![]() |
function PerfectlyEquals(SecondValue: TObject): boolean; |
|
Does the SecondValue have equal length and content. This method does the same thing as Equals. It is defined for consistency – on some lists, like TSingleList, there is an important difference between Equals (compares with some epsilon tolerance) and | |
Generated by PasDoc 0.16.0.
