forked from malcolmgroves/FluentQuery
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFluentQuery.Core.Reduce.pas
53 lines (42 loc) · 1.88 KB
/
FluentQuery.Core.Reduce.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{****************************************************}
{ }
{ FluentQuery }
{ }
{ Copyright (C) 2013 Malcolm Groves }
{ }
{ http://www.malcolmgroves.com }
{ }
{****************************************************}
{ }
{ This Source Code Form is subject to the terms of }
{ the Mozilla Public License, v. 2.0. If a copy of }
{ the MPL was not distributed with this file, You }
{ can obtain one at }
{ }
{ http://mozilla.org/MPL/2.0/ }
{ }
{****************************************************}
unit FluentQuery.Core.Reduce;
interface
uses
FluentQuery.Core.Enumerators;
type
TCombiningFunction<T, TAccumulator> = reference to function(Accumulator : TAccumulator; NextValue : T): TAccumulator;
TReducer<T, TAccumulator> = class
public
class function Reduce(Query : TBaseQuery<T>; InitialAccumulatorValue : TAccumulator; CombiningFunction : TCombiningFunction<T, TAccumulator>) : TAccumulator;
end;
implementation
{ TReducer<T, TAccumulator> }
class function TReducer<T, TAccumulator>.Reduce(Query : TBaseQuery<T>;
InitialAccumulatorValue: TAccumulator;
CombiningFunction: TCombiningFunction<T, TAccumulator>): TAccumulator;
var
LValue : TAccumulator;
begin
LValue := InitialAccumulatorValue;
while Query.MoveNext do
LValue := CombiningFunction(LValue, Query.GetCurrent);
Result := LValue;
end;
end.