-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFloatHlp.pas
80 lines (65 loc) · 1.92 KB
/
FloatHlp.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
unit FloatHlp;
////////////////////////////////////////////////////////////////////////////////
//
// Author: Jaap Baak
// https://github.com/transportmodelling/Utils
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
interface
////////////////////////////////////////////////////////////////////////////////
Uses
SysUtils;
Type
TFloat64Helper = record helper for Float64
public
Function Round: Int64;
Procedure Add(const Value: Float64);
Procedure Subtract(const Value: Float64);
Procedure MultiplyBy(const Value: Float64);
Function MultipliedBy(const Value: Float64): Float64;
Procedure DivideBy(const Value: Float64);
Function DividedBy(const Value: Float64): Float64;
Function ToString: String; overload;
Function ToString(const Format: String): String; overload;
end;
////////////////////////////////////////////////////////////////////////////////
implementation
////////////////////////////////////////////////////////////////////////////////
Function TFloat64Helper.Round: Int64;
begin
Result := System.Round(Self);
end;
Procedure TFloat64Helper.Add(const Value: Float64);
begin
Self := Self + Value;
end;
Procedure TFloat64Helper.Subtract(const Value: Float64);
begin
Self := Self - Value;
end;
Procedure TFloat64Helper.MultiplyBy(const Value: Float64);
begin
Self := Value*Self;
end;
Function TFloat64Helper.MultipliedBy(const Value: Float64): Float64;
begin
Result := Value*Self;
end;
Procedure TFloat64Helper.DivideBy(const Value: Float64);
begin
Self := Self/Value;
end;
Function TFloat64Helper.DividedBy(const Value: Float64): Float64;
begin
Result := Self/Value;
end;
Function TFloat64Helper.ToString: String;
begin
Result := FloatToStr(Self);
end;
Function TFloat64Helper.ToString(const Format: String): String;
begin
Result := FormatFloat(Format,Self);
end;
end.