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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
Class Function TFLOATHELPER.IsNan(const AValue: FLOATTYPE): Boolean; overload; inline; static;
begin
Result:=TFloatRec(AValue).SpecialType=fsNan;
end;
Class Function TFLOATHELPER.IsInfinity(const AValue: FLOATTYPE): Boolean; overload; inline; static;
begin
Result:=TFloatRec(AValue).SpecialType in [fsInf,fsNinf];
end;
Class Function TFLOATHELPER.IsNegativeInfinity(const AValue: FLOATTYPE): Boolean; overload; inline; static;
begin
Result:=TFloatRec(AValue).SpecialType=fsNinf;
end;
Class Function TFLOATHELPER.IsPositiveInfinity(const AValue: FLOATTYPE): Boolean; overload; inline; static;
begin
Result:=TFloatRec(AValue).SpecialType=fsInf;
end;
Class Function TFLOATHELPER.Parse(const AString: string): FLOATTYPE; overload; inline; static;
begin
Result:=StrToFloat(AString,DefaultFormatSettings);
end;
Class Function TFLOATHELPER.Parse(const AString: string; const AFormatSettings: TFormatSettings): FLOATTYPE; overload; inline; static;
begin
Result:=StrToFloat(AString,AFormatSettings);
end;
Class Function TFLOATHELPER.Size: Integer; inline; static;
begin
Result:=SizeOf(FLOATTYPE);
end;
Class Function TFLOATHELPER.ToString(const AValue: FLOATTYPE): string; overload; inline; static;
begin
Result:=FloatToStr(AValue,DefaultFormatSettings);
end;
Class Function TFLOATHELPER.ToString(const AValue: FLOATTYPE; const AFormatSettings: TFormatSettings): string; overload; inline; static;
begin
Result:=FloatToStr(AValue,AFormatSettings);
end;
Class Function TFLOATHELPER.ToString(const AValue: FLOATTYPE; const AFormat: TFloatFormat; const APrecision, ADigits: Integer): string; overload; inline; static;
begin
Result:=FloatToStrF(AValue,AFormat,APrecision,ADigits,DefaultFormatSettings);
end;
Class Function TFLOATHELPER.ToString(const AValue: FLOATTYPE; const AFormat: TFloatFormat; const APrecision, ADigits: Integer; const AFormatSettings: TFormatSettings): string;
overload; inline; static;
begin
Result:=FloatToStrF(AValue,AFormat,APrecision,ADigits,AFormatSettings);
end;
Class Function TFLOATHELPER.TryParse(const AString: string; out AValue: FLOATTYPE): Boolean; overload; inline; static;
begin
Result:=TryStrToFloat(AString,AValue,DefaultFormatSettings);
end;
Class Function TFLOATHELPER.TryParse(const AString: string; out AValue: FLOATTYPE; const AFormatSettings: TFormatSettings): Boolean; overload; inline;
static;
begin
Result:=TryStrToFloat(AString,AValue,AFormatSettings);
end;
Function TFLOATHELPER.GetB(AIndex: Cardinal): Byte;
begin
if (AIndex>=SizeOf(FLOATTYPE)) then
system.Error(reRangeError);
Result:=PByte(@Self)[AIndex];
end;
Function TFLOATHELPER.GetW(AIndex: Cardinal): Word;
begin
if (AIndex>=(SizeOf(FLOATTYPE) div SizeOf(Word))) then
system.Error(reRangeError);
Result:=PWord(@Self)[AIndex];
end;
Function TFLOATHELPER.GetE: QWord; inline;
begin
Result:=TFloatRec(Self).Exp;
end;
Function TFLOATHELPER.GetF: QWord; inline;
begin
Result:=TFloatRec(Self).Frac;
end;
Function TFLOATHELPER.GetS: Boolean; inline;
begin
Result:=TFloatRec(Self).Sign;
end;
procedure TFLOATHELPER.SetB(AIndex: Cardinal; const AValue: Byte);
begin
if (AIndex>=SizeOf(FLOATTYPE)) then
system.Error(reRangeError);
PByte(@Self)[AIndex]:=AValue;
end;
procedure TFLOATHELPER.SetW(AIndex: Cardinal; const AValue: Word);
begin
if (AIndex>=(SizeOf(FLOATTYPE) div SizeOf(Word))) then
system.Error(reRangeError);
PWord(@Self)[AIndex]:=AValue;
end;
procedure TFLOATHELPER.SetE(AValue: QWord);
begin
TFloatRec(Self).Exp:=AValue;
end;
procedure TFLOATHELPER.SetF(AValue: QWord);
begin
TFloatRec(Self).Frac:=AValue;
end;
procedure TFLOATHELPER.SetS(AValue: Boolean);
begin
TFloatRec(Self).Sign:=AValue;
end;
Procedure TFLOATHELPER.BuildUp(const ASignFlag: Boolean; const AMantissa: QWord; const AExponent: Integer);
begin
TFloatRec(Self).BuildUp(ASignFlag, AMantissa, AExponent);
end;
Function TFLOATHELPER.Exponent: Integer;
begin
Result:=TFloatRec(Self).Exponent;
end;
Function TFLOATHELPER.Fraction: Extended;
begin
Result:=TFloatRec(Self).Fraction;
end;
Function TFLOATHELPER.IsInfinity: Boolean; overload; inline;
begin
Result:=TFloatRec(Self).SpecialType in [fsInf,fsNinf];
end;
Function TFLOATHELPER.IsNan: Boolean; overload; inline;
begin
Result:=TFloatRec(Self).SpecialType=fsNan;
end;
Function TFLOATHELPER.IsNegativeInfinity: Boolean; overload; inline;
begin
Result:=TFloatRec(Self).SpecialType=fsNinf;
end;
Function TFLOATHELPER.IsPositiveInfinity: Boolean; overload; inline;
begin
Result:=TFloatRec(Self).SpecialType=fsInf;
end;
Function TFLOATHELPER.Mantissa: QWord;
begin
Result:=TFLoatRec(Self).Mantissa(True);
end;
Function TFLOATHELPER.SpecialType: TFloatSpecial;
begin
Result:=TFLoatRec(Self).SpecialType;
end;
Function TFLOATHELPER.ToString(const AFormat: TFloatFormat; const APrecision, ADigits: Integer): string; overload; inline;
begin
Result:=FloatToStrF(Self,AFormat,APrecision,ADigits,DefaultFormatSettings);
end;
Function TFLOATHELPER.ToString(const AFormat: TFloatFormat; const APrecision, ADigits: Integer; const AFormatSettings: TFormatSettings): string; overload; inline;
begin
Result:=FloatToStrF(Self,AFormat,APrecision,ADigits,AFormatSettings);
end;
Function TFLOATHELPER.ToString(const AFormatSettings: TFormatSettings): string; overload; inline;
begin
Result:=FloatToStr(Self,AFormatSettings);
end;
Function TFLOATHELPER.ToString: string; overload; inline;
begin
Result:=FloatToStr(Self,DefaultFormatSettings);
end;
|