-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValue.cs
More file actions
640 lines (565 loc) · 26.6 KB
/
Value.cs
File metadata and controls
640 lines (565 loc) · 26.6 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Metadata.Ecma335;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Schema;
namespace NewPaloAltoTB;
/// <summary>
/// Contains a value (result of an expression). This includes the type, but no
/// modifiers like public or readonly/const.
/// </summary>
internal class Value {
internal ValueType VType = ValueType.None;
internal object? OValue;
//private bool v;
private static readonly Value _nullValue = new();
internal static Value NullValue => _nullValue;
internal Value(bool v) {
VType = ValueType.Bool;
OValue = v;
}
internal Value(short v) {
VType = ValueType.Short;
OValue = v;
}
internal Value(int v) {
VType = ValueType.Int;
OValue = v;
}
internal Value(double v) {
VType = ValueType.Double;
OValue = v;
}
internal Value(string v) {
VType = ValueType.String;
OValue = v;
}
internal Value() {
VType = ValueType.None;
OValue = null;
}
public Value CastAsBool() {
switch (VType) {
case ValueType.Bool: return this;
case ValueType.None: return new(false);
case ValueType.Short: return new(((short?)OValue ?? 0) != 0);
case ValueType.Int: return new((((int?)OValue) ?? 0) != 0);
case ValueType.Double: return new((((double?)OValue) ?? 0.0) != 0.0);
case ValueType.String: //we are being pretty permissive here! Should probably make a formal converter...
var tmpStr = (((string?)OValue) ?? "0").ToUpper();
if (tmpStr.StartsWith("TRUE")) return new(true);
if (tmpStr.StartsWith("T")) return new(true);
if (tmpStr.StartsWith("YES")) return new(true);
if (tmpStr.StartsWith("Y")) return new(true);
if (tmpStr.StartsWith("1")) return new(true);
if (tmpStr.StartsWith("FALSE")) return new(false);
if (tmpStr.StartsWith("F")) return new(false);
if (tmpStr.StartsWith("NO")) return new(false);
if (tmpStr.StartsWith("N")) return new(false);
if (tmpStr.StartsWith("0")) return new(false);
throw new ArgumentException($"Cannot cast \"{(string?)OValue}\" as a boolean value.");
default:
throw new ArgumentException(); //Cast from unknown type - would mean coding not complete
}
}
public Value CastAsShort() {
switch (VType) {
case ValueType.Bool: return new((short)((bool)(OValue ?? false) ? 1 : 0));
case ValueType.None: return new((short)0);
case ValueType.Short: return this;
case ValueType.Int:
var tmpInt = ((int?)OValue) ?? 0;
if ((tmpInt < short.MinValue) || (tmpInt > short.MaxValue)) throw new ArgumentOutOfRangeException();
return new((short)tmpInt);
case ValueType.Double:
var tmpDbl = ((double?)OValue) ?? 0.0;
if ((tmpDbl < short.MinValue) || (tmpDbl > short.MaxValue)) throw new ArgumentOutOfRangeException();
return new((short)tmpDbl);
case ValueType.String:
var tmpStr = ((string?)OValue) ?? "0";
short tmpShortParsed;
if (short.TryParse(tmpStr, out tmpShortParsed)) {
return new(tmpShortParsed);
}
throw new ArgumentException(); //TryParse() failed - not a valid number, out of range, or followed by garbage (non-ws) text
default:
throw new ArgumentException(); //Cast from unknown type - would mean coding not complete
}
}
public Value CastAsInt() {
switch (VType) {
case ValueType.Bool: return new((int)((bool)(OValue ?? false) ? 1 : 0));
case ValueType.None: return new((int)0);
case ValueType.Short: return new Value((int)((short?)OValue ?? 0));
case ValueType.Int: return this;
case ValueType.Double:
var tmpDbl = ((double?)OValue) ?? 0.0;
if ((tmpDbl < int.MinValue) || (tmpDbl > int.MaxValue)) throw new ArgumentOutOfRangeException();
return new((int)tmpDbl);
case ValueType.String:
var tmpStr = ((string?)OValue) ?? "0"; //odd, why is tmpStr a nullable string when (evenANullValue ?? "0") cannot evaluate to null?
int tmpIntParsed;
if (int.TryParse(tmpStr, out tmpIntParsed)) {
return new(tmpIntParsed);
}
throw new ArgumentException(); //TryParse() failed - not a valid number, out of range, or followed by garbage (non-ws) text
default:
throw new ArgumentException(); //Cast from unknown type - would mean coding not complete
}
}
public Value CastAsDouble() {
switch (VType) {
case ValueType.Bool: return new((double)((((bool?)OValue) ?? false) ? 1.0 : 0.0));
case ValueType.None: return new((short)0);
case ValueType.Short: return new( (double)(((short?)OValue) ?? 0));
case ValueType.Int: return new( (double)(((int?)OValue) ?? 0));
case ValueType.Double: return this;
case ValueType.String:
var tmpStr = ((string?)OValue) ?? "0";
double tmpParsed;
if (double.TryParse(tmpStr, out tmpParsed)) {
return new(tmpParsed);
}
throw new ArgumentException($"Cannot convert {(string?)OValue} to a floating point number."); //TryParse() failed - not a valid number, out of range, or followed by garbage (non-ws) text
default:
throw new ArgumentException(); //Cast from unknown type - would mean coding not complete
}
}
public Value CastAsString() {
switch (VType) {
case ValueType.Bool: return new((((bool?)OValue) ?? false) ? "True" : "False");
case ValueType.None: return new("Nil");
case ValueType.Short: return new($"{OValue}");
case ValueType.Int: return new($"{OValue}");
case ValueType.Double: return new($"{OValue}");
case ValueType.String: return this;
default:
throw new ArgumentException(); //Cast from unknown type - would mean coding not complete
}
}
/// <summary>
/// Coerce operands to matching or compatible types
/// (this could be long and messy)
/// Generally, coerce both operands to the wider/higher precision type.
/// </summary>
/// <param name="a">'this' is the first operand</param>
/// <param name="b">b is the second operand</param>
/// <param name="operType">operType describes the required operation: addition, multiplication, etc.</param>
/// <returns>true if successful</returns>
/// <exception cref="NotImplementedException"></exception>
private bool NormalizeTypes(Value b, OperationType operType) {
Value a = this;
switch (operType) {
case OperationType.None:
break;
case OperationType.Compare:
if (a.VType == ValueType.Int && a.VType == b.VType) return true;
break;
case OperationType.AddSubtract:
if (a.VType == ValueType.Int && a.VType == b.VType) return true;
break;
case OperationType.MultiplyDivide:
if (a.VType == ValueType.Int && a.VType == b.VType) return true;
break;
case OperationType.BooleanLogical:
if (a.VType == ValueType.Bool && a.VType == b.VType) return true;
break;
case OperationType.BooleanBitwise:
break;
default:
break;
}
throw new NotImplementedException();
}
internal Value LessThanOrEqualTo(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() <= b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() <= b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() <= b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(ShortValue() <= b.ShortValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) <= 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value LessThan(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() < b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() < b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() < b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(ShortValue() < b.ShortValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) < 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value GreaterThanOrEqualTo(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() >= b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() >= b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() >= b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(ShortValue() >= b.ShortValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) >= 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value GreaterThan(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() > b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() > b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() > b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(ShortValue() > b.ShortValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) > 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value EqualTo(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() == b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() == b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() == b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(BoolValue() == b.BoolValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) == 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value NotEqualTo(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() != b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() != b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() != b.DoubleValue());
case (ValueType.Bool, ValueType.Bool): //just compare false and true as 0 and 1
return new(BoolValue() != b.BoolValue());
case (ValueType.String, ValueType.String): //just compare false and true as 0 and 1
return new(string.Compare(StringValue(), b.StringValue()) != 0);
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Add(Value b) {
//throw new NotImplementedException();
//many cases to handle...
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() + b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() + b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() + b.DoubleValue());
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Subtract(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() - b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() - b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() - b.DoubleValue());
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Multiply(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() * b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() * b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() * b.DoubleValue());
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Divide(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() / b.IntValue());
case (ValueType.Short, ValueType.Short):
return new(ShortValue() / b.ShortValue());
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() / b.DoubleValue());
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Modulo(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new(IntValue() % b.IntValue());
case (ValueType.Short, ValueType.Short):
return new((short)(ShortValue() % b.ShortValue()));
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(DoubleValue() % b.DoubleValue());
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value Exponential(Value b) {
switch ((VType, b.VType)) {
case (ValueType.Int, ValueType.Int):
case (ValueType.Int, ValueType.Short):
case (ValueType.Short, ValueType.Int):
return new((int) Math.Pow(IntValue(), b.IntValue()));
case (ValueType.Short, ValueType.Short):
return new((short) Math.Pow(ShortValue(), b.ShortValue()));
case (ValueType.Double, ValueType.Double):
case (ValueType.Double, ValueType.Int):
case (ValueType.Double, ValueType.Short):
case (ValueType.Int, ValueType.Double):
case (ValueType.Short, ValueType.Double):
return new(Math.Pow(DoubleValue(), b.DoubleValue()));
default:
throw new RuntimeException($"Sorry, I don't know how to handle these types.");
}
}
internal Value LogicalAnd(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value LogicalOr(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value LogicalNot() {
throw new NotImplementedException();
//many cases to handle...
}
internal Value LogicalXor(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value BitwiseAnd(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value BitwiseOr(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value BitwiseNot() {
throw new NotImplementedException();
//many cases to handle...
}
internal Value BitwiseXor(Value b) {
throw new NotImplementedException();
//many cases to handle...
}
internal Value NegativeValue() {
switch (VType) {
case ValueType.Short:
return new(0 - this.ShortValue());
case ValueType.Int:
return new(0 - this.IntValue());
case ValueType.Double:
return new(0 - this.DoubleValue());
//case ValueType.Bool:
//case ValueType.String:
// throw new NotImplementedException();
default:
throw new NotImplementedException();
}
}
internal bool IsZero() {
switch (VType) {
case ValueType.Bool:
case ValueType.String:
break; //should never be called for non-XmlSchemaNumericFacet types
case ValueType.Int:
return (int)OValue == 0;
case ValueType.Double:
return (double)OValue == 0.0;
default:
break;
}
throw new NotImplementedException();
}
//internal Value CoerceType(ValueType vType) {
// (ValueType from, ValueType to) typePair = (this.VType, vType);
// switch (typePair) {
// case (from: ValueType.Bool, to: ValueType.Bool): return this;
// case (from: ValueType.Bool, to: ValueType.Short): return new((short)(((bool)OValue!) ? 1 : 0));
// case (from: ValueType.Bool, to: ValueType.Int): return new(((bool)OValue!) ? 1 : 0);
// case (from: ValueType.Bool, to: ValueType.Double): return new(((bool)OValue!) ? 1.0 : 0.0);
// case (from: ValueType.Bool, to: ValueType.String): return new(((bool)OValue!) ? "True" : "False");
// case (from: ValueType.Short, to: ValueType.Bool): return new(((short)OValue!) != 0);
// case (from: ValueType.Short, to: ValueType.Short): return this;
// case (from: ValueType.Short, to: ValueType.Int): return new((int)(short)OValue!);
// case (from: ValueType.Short, to: ValueType.Double): return new((double)(short)OValue!);
// case (from: ValueType.Short, to: ValueType.String): return new($"{(short)OValue!}");
// case (from: ValueType.Int, to: ValueType.Bool): return new(((int)OValue!) != 0);
// case (from: ValueType.Int, to: ValueType.Short): return CastAsShort();
// case (from: ValueType.Int, to: ValueType.Int): return this;
// case (from: ValueType.Int, to: ValueType.Double):
// case (from: ValueType.Int, to: ValueType.String):
// case (from: ValueType.Double, to: ValueType.Bool):
// case (from: ValueType.Double, to: ValueType.Short):
// case (from: ValueType.Double, to: ValueType.Int):
// case (from: ValueType.Double, to: ValueType.Double): return this;
// case (from: ValueType.Double, to: ValueType.String):
// case (from: ValueType.String, to: ValueType.Bool):
// case (from: ValueType.String, to: ValueType.Short):
// case (from: ValueType.String, to: ValueType.Int):
// case (from: ValueType.String, to: ValueType.Double):
// case (from: ValueType.String, to: ValueType.String): return this;
// default:
// throw new RuntimeException($"Cannot implicitly convert type {VType} to {vType}.");
// break;
// }
//}
internal Value CoerceType(ValueType vType) {
switch (vType) {
case ValueType.Bool: return CastAsBool();
case ValueType.Short: return CastAsShort();
case ValueType.Int: return CastAsInt();
case ValueType.Double: return CastAsDouble();
case ValueType.String: return CastAsString();
default:
throw new RuntimeException($"Cannot implicitly convert type {VType} to {vType}.");
}
}
internal bool BoolValue() {
var v = CoerceType(ValueType.Bool);
return (bool)v.OValue!;
}
internal short ShortValue() {
var v = CoerceType(ValueType.Short);
return (short)v.OValue!;
}
internal int IntValue() {
var v = CoerceType(ValueType.Int);
return (int)v.OValue!;
}
internal double DoubleValue() {
var v = CoerceType(ValueType.Double);
return (double)v.OValue!;
}
internal string StringValue() {
var v = CoerceType(ValueType.String);
return (string)v.OValue!;
}
internal bool IsPositive() {
return VType switch {
ValueType.None => throw new NotImplementedException(),
ValueType.Short => ((short?)(OValue ?? 0)) > 0,
ValueType.Int => ((int?)(OValue ?? 0)) > 0,
ValueType.Double => ((double?)(OValue ?? 0)) > 0,
ValueType.Bool => throw new NotImplementedException(),
ValueType.String => throw new NotImplementedException(),
_ => throw new NotImplementedException(),
};
}
internal bool IsNegative() {
return VType switch {
ValueType.None => throw new NotImplementedException(),
ValueType.Short => ((short?)(OValue ?? 0)) < 0,
ValueType.Int => ((int?)(OValue ?? 0)) < 0,
ValueType.Double => ((double?)(OValue ?? 0)) < 0,
ValueType.Bool => throw new NotImplementedException(),
ValueType.String => throw new NotImplementedException(),
_ => throw new NotImplementedException(),
};
}
}