Class TBooleanList

Unit

Declaration

type TBooleanList = class(specialize TStructList<boolean>)

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 procedure SetFalse(const Index: TListSize);
Public procedure SetTrue(const Index: TListSize);
Public function ToLongInt: TLongIntList;
Public function Equals(SecondValue: TObject): boolean; override;

Description

Methods

Public procedure SetFalse(const Index: TListSize);

Set appropriate item to given value. These are useful methods to pass as callback in some situations (e.g. TCastleScene.RenderFrustumOctree passes RenderFrustumOctree_Visible.SetTrue method as callback that should mark visible items.)

Public procedure SetTrue(const Index: TListSize);
 
Public function ToLongInt: TLongIntList;
 
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 Booleans list, that are always compared perfectly.


Generated by PasDoc 0.16.0.