mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-13 00:53:08 +02:00
136 lines
2.8 KiB
ObjectPascal
136 lines
2.8 KiB
ObjectPascal
{ a helper hides an existing enumerator }
|
|
program tchlp53;
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
{$apptype console}
|
|
|
|
uses
|
|
sysutils;
|
|
|
|
type
|
|
TContainerEnum = class;
|
|
|
|
TContainer = class
|
|
Contents: array[0..5] of Integer;
|
|
function GetEnumerator: TContainerEnum;
|
|
constructor Create;
|
|
end;
|
|
|
|
TContainerEnum = class
|
|
private
|
|
fIndex: Integer;
|
|
fContainer: TContainer;
|
|
fForward: Boolean;
|
|
public
|
|
constructor Create(aContainer: TContainer; aForward: Boolean);
|
|
function GetCurrent: Integer;
|
|
function MoveNext: Boolean;
|
|
property Current: Integer read GetCurrent;
|
|
end;
|
|
|
|
TContainerHelperEnum = class
|
|
private
|
|
fIndex: Integer;
|
|
fContainer: TContainer;
|
|
fForward: Boolean;
|
|
public
|
|
constructor Create(aContainer: TContainer; aForward: Boolean);
|
|
function GetCurrent: string;
|
|
function MoveNext: Boolean;
|
|
property Current: string read GetCurrent;
|
|
end;
|
|
|
|
TContainerHelper = class helper for TContainer
|
|
function GetEnumerator: TContainerHelperEnum;
|
|
end;
|
|
|
|
{ TContainerHelperEnum }
|
|
|
|
constructor TContainerHelperEnum.Create(aContainer: TContainer;
|
|
aForward: Boolean);
|
|
begin
|
|
fContainer := aContainer;
|
|
fForward := aForward;
|
|
if fForward then
|
|
fIndex := Low(fContainer.Contents) - 1
|
|
else
|
|
fIndex := High(fContainer.Contents) + 1;
|
|
end;
|
|
|
|
function TContainerHelperEnum.GetCurrent: string;
|
|
begin
|
|
Result := IntToStr(fContainer.Contents[fIndex]);
|
|
end;
|
|
|
|
function TContainerHelperEnum.MoveNext: Boolean;
|
|
begin
|
|
if fForward then begin
|
|
Inc(fIndex);
|
|
Result := fIndex <= High(fContainer.Contents);
|
|
end else begin
|
|
Dec(fIndex);
|
|
Result := fIndex >= Low(fContainer.Contents);
|
|
end;
|
|
end;
|
|
|
|
{ TContainer }
|
|
|
|
constructor TContainer.Create;
|
|
var
|
|
i: Integer;
|
|
begin
|
|
for i := Low(Contents) to High(Contents) do
|
|
Contents[i] := i;
|
|
end;
|
|
|
|
function TContainer.GetEnumerator: TContainerEnum;
|
|
begin
|
|
Result := TContainerEnum.Create(Self, True);
|
|
end;
|
|
|
|
{ TContainerHelper }
|
|
|
|
function TContainerHelper.GetEnumerator: TContainerHelperEnum;
|
|
begin
|
|
Result := TContainerHelperEnum.Create(Self, False);
|
|
end;
|
|
|
|
{ TContainerEnum }
|
|
|
|
constructor TContainerEnum.Create(aContainer: TContainer; aForward: Boolean);
|
|
begin
|
|
fContainer := aContainer;
|
|
fForward := aForward;
|
|
if fForward then
|
|
fIndex := Low(fContainer.Contents) - 1
|
|
else
|
|
fIndex := High(fContainer.Contents) + 1;
|
|
end;
|
|
|
|
function TContainerEnum.GetCurrent: Integer;
|
|
begin
|
|
Result := fContainer.Contents[fIndex];
|
|
end;
|
|
|
|
function TContainerEnum.MoveNext: Boolean;
|
|
begin
|
|
if fForward then begin
|
|
Inc(fIndex);
|
|
Result := fIndex <= High(fContainer.Contents);
|
|
end else begin
|
|
Dec(fIndex);
|
|
Result := fIndex >= Low(fContainer.Contents);
|
|
end;
|
|
end;
|
|
|
|
var
|
|
cont: TContainer;
|
|
begin
|
|
cont := TContainer.Create;
|
|
for i{guesstype:string} in cont do begin
|
|
end;
|
|
Writeln('ok');
|
|
end.
|