-
Notifications
You must be signed in to change notification settings - Fork 1
/
HighPrecisionTimeStamps.xml
3769 lines (3752 loc) · 196 KB
/
HighPrecisionTimeStamps.xml
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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>HighPrecisionTimeStamps</name>
</assembly>
<members>
<member name="T:HpTimeStamps.BigMath.Int128">
<summary>
Represents a 128-bit signed integer.
</summary>
</member>
<member name="F:HpTimeStamps.BigMath.Int128.Zero">
<summary>
Gets a value that represents the number 0 (zero).
</summary>
</member>
<member name="F:HpTimeStamps.BigMath.Int128.MaxValue">
<summary>
Represents the largest possible value of an Int128.
</summary>
</member>
<member name="F:HpTimeStamps.BigMath.Int128.MinValue">
<summary>
Represents the smallest possible value of an Int128.
</summary>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Byte)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">if set to <c>true</c> [value].</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Decimal)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Double)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Single)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Int16)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Int64)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.SByte)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.UInt16)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.UInt32)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.UInt64)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Guid)">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.#ctor(System.Int32,System.ReadOnlySpan{System.UInt32})">
<summary>
Initializes a new instance of the <see cref="T:HpTimeStamps.BigMath.Int128" /> struct.
</summary>
<param name="sign">The sign.</param>
<param name="intsIncoming">The ints.</param>
</member>
<member name="P:HpTimeStamps.BigMath.Int128.HighSigned">
<summary>
Higher 64 bits expressed as signed integer
</summary>
</member>
<member name="P:HpTimeStamps.BigMath.Int128.High">
<summary>
Higher 64 bits (unsigned).
</summary>
</member>
<member name="P:HpTimeStamps.BigMath.Int128.Low">
<summary>
Lower 64 bits.
</summary>
</member>
<member name="P:HpTimeStamps.BigMath.Int128.Sign">
<summary>
Gets a number that indicates the sign (negative, positive, or zero) of the current Int128 object.
</summary>
<value>A number that indicates the sign of the Int128 object</value>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
<returns>
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Equals(System.Object)">
<summary>
Returns a value indicating whether this instance is equal to a specified object.
</summary>
<param name="obj">An object to compare with this instance.</param>
<returns>
true if obj has the same value as this instance; otherwise, false.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Equals(HpTimeStamps.BigMath.Int128)">
<summary>
Returns a value indicating whether this instance is equal to a specified Int64 value.
</summary>
<param name="obj">The obj.</param>
<returns>
true if obj has the same value as this instance; otherwise, false.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.UnsignedAbsoluteValue">
<summary>
Get the absolute value of this value as an unsigned integer. If this value is negative,
after casting to unsigned the value will be returned in its 2's complement form
</summary>
<returns>The absolute value as an unsigned integer</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToString(System.String,System.IFormatProvider)">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<param name="format">The format. Only x, X, g, G, d, D are supported.</param>
<param name="formatProvider">An object that supplies culture-specific formatting information about this instance.</param>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.TryConvert(System.Type,System.IFormatProvider,System.Boolean,System.Object@)">
<summary>
Converts the numeric value to an equivalent object. The return value indicates whether the conversion succeeded.
</summary>
<param name="conversionType">The target conversion type.</param>
<param name="provider">An object that supplies culture-specific information about the conversion.</param>
<param name="asLittleEndian">As little endian.</param>
<param name="value">
When this method returns, contains the value that is equivalent to the numeric value, if the
conversion succeeded, or is null if the conversion failed. This parameter is passed uninitialized.
</param>
<returns>true if this value was converted successfully; otherwise, false.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Parse(System.ReadOnlySpan{System.Char})">
<summary>
Converts the string representation of a number to its Int128 equivalent.
</summary>
<param name="value">A string that contains a number to convert.</param>
<returns>
A value that is equivalent to the number specified in the value parameter.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles)">
<summary>
Converts the string representation of a number in a specified style format to its Int128 equivalent.
</summary>
<param name="value">A string that contains a number to convert.</param>
<param name="style">A bitwise combination of the enumeration values that specify the permitted format of value.</param>
<returns>
A value that is equivalent to the number specified in the value parameter.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider)">
<summary>
Converts the string representation of a number in a culture-specific format to its Int128 equivalent.
</summary>
<param name="value">A string that contains a number to convert.</param>
<param name="provider">An object that provides culture-specific formatting information about value.</param>
<returns>
A value that is equivalent to the number specified in the value parameter.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider)">
<summary>
Converts the string representation of a number in a specified style and culture-specific format to its Int128
equivalent.
</summary>
<param name="value">A string that contains a number to convert.</param>
<param name="style">A bitwise combination of the enumeration values that specify the permitted format of value.</param>
<param name="provider">An object that provides culture-specific formatting information about value.</param>
<returns>A value that is equivalent to the number specified in the value parameter.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.TryParse(System.ReadOnlySpan{System.Char},HpTimeStamps.BigMath.Int128@)">
<summary>
Tries to convert the string representation of a number to its Int128 equivalent, and returns a value that indicates
whether the conversion succeeded..
</summary>
<param name="value">The string representation of a number.</param>
<param name="result">
When this method returns, contains the Int128 equivalent to the number that is contained in value,
or Int128.Zero if the conversion failed. This parameter is passed uninitialized.
</param>
<returns>
true if the value parameter was converted successfully; otherwise, false.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,HpTimeStamps.BigMath.Int128@)">
<summary>
Tries to convert the string representation of a number in a specified style and culture-specific format to its
Int128 equivalent, and returns a value that indicates whether the conversion succeeded..
</summary>
<param name="value">
The string representation of a number. The string is interpreted using the style specified by
style.
</param>
<param name="style">
A bitwise combination of enumeration values that indicates the style elements that can be present
in value. A typical value to specify is NumberStyles.Integer.
</param>
<param name="provider">An object that supplies culture-specific formatting information about value.</param>
<param name="result">
When this method returns, contains the Int128 equivalent to the number that is contained in value,
or Int128.Zero if the conversion failed. This parameter is passed uninitialized.
</param>
<returns>true if the value parameter was converted successfully; otherwise, false.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToType(System.Type,System.IFormatProvider,System.Boolean)">
<summary>
Converts the value of this instance to an <see cref="T:System.Object" /> of the specified
<see cref="T:System.Type" /> that has an equivalent value, using the specified culture-specific formatting
information.
</summary>
<param name="conversionType">The <see cref="T:System.Type" /> to which the value of this instance is converted.</param>
<param name="provider">
An <see cref="T:System.IFormatProvider" /> interface implementation that supplies
culture-specific formatting information.
</param>
<param name="asLittleEndian">As little endian.</param>
<returns>
An <see cref="T:System.Object" /> instance of type <paramref name="conversionType" /> whose value is equivalent to
the value of this instance.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.System#IComparable#CompareTo(System.Object)">
<summary>
Compares the current instance with another object of the same type and returns an integer that indicates whether
the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
</summary>
<param name="obj">An object to compare with this instance.</param>
<returns>
A value that indicates the relative order of the objects being compared. The return value has these meanings: Value
Meaning Less than zero This instance is less than <paramref name="obj" />. Zero This instance is equal to
<paramref name="obj" />. Greater than zero This instance is greater than <paramref name="obj" />.
</returns>
<exception cref="T:System.ArgumentException">
<paramref name="obj" /> is not the same type as this instance.
</exception>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Compare(HpTimeStamps.BigMath.Int128@,System.Object)">
<summary>
Compares two Int128 values and returns an integer that indicates whether the first value is less than, equal to, or
greater than the second value.
</summary>
<param name="left">The first value to compare.</param>
<param name="right">The second value to compare.</param>
<returns>A signed integer that indicates the relative values of left and right, as shown in the following table.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Compare(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Compares two 128-bit signed integer values and returns an integer that indicates whether the first value is less
than, equal to, or greater than the second value.
</summary>
<param name="left">The first value to compare.</param>
<param name="right">The second value to compare.</param>
<returns>
A signed number indicating the relative values of this instance and value.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.CompareTo(HpTimeStamps.BigMath.Int128)">
<summary>
Compares this instance to a specified 128-bit signed integer and returns an indication of their relative values.
</summary>
<param name="value">An integer to compare.</param>
<returns>A signed number indicating the relative values of this instance and value.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.TwosComplementNegate(HpTimeStamps.BigMath.Int128)">
<summary>
Negates a specified Int128 value.
</summary>
<param name="value">The value to negate.</param>
<returns>The result of the value parameter multiplied by negative one (-1).</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToAbs">
<summary>
Gets the absolute value this object.
</summary>
<returns>The absolute value.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.Abs(HpTimeStamps.BigMath.Int128@)">
<summary>
Gets the absolute value of an Int128 object.
</summary>
<param name="value">A number.</param>
<returns>
The absolute value.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.DivRem(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Divides one Int128 value by another, returns the result, and returns the remainder in an output parameter.
</summary>
<param name="dividend">The value to be divided.</param>
<param name="divisor">The value to divide by.</param>
<returns>
The quotient of the division.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToUIn64Array">
<summary>
Converts an Int128 value to an unsigned long array.
</summary>
<returns>
The value of the current Int128 object converted to an array of unsigned integers.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.ToUIn32Array">
<summary>
Converts an Int128 value to an unsigned integer array.
</summary>
<returns>The value of the current Int128 object converted to an array of unsigned integers.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.SlowMultiply(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Returns the product of two Int128 values.
</summary>
<param name="left">The first number to multiply.</param>
<param name="right">The second number to multiply.</param>
<returns>The product of the left and right parameters.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Boolean)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Boolean" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">if set to <c>true</c> [value].</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Byte)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Byte" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Char)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Char" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(System.Decimal)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an explicit conversion from <see cref="T:System.Decimal" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(System.Double)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an explicit conversion from <see cref="T:System.Double" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Int16)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Int16" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Int32)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Int32" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.Int64)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.Int64" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.SByte)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.SByte" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(System.Single)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an explicit conversion from <see cref="T:System.Single" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.UInt16)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt16" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.UInt32)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt32" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Implicit(System.UInt64)~HpTimeStamps.BigMath.Int128">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt64" /> to <see cref="T:HpTimeStamps.BigMath.Int128" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128)~System.Boolean">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Boolean" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Byte">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Byte" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Char">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Char" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Decimal">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Decimal" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Double">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Double" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Single">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Single" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Int16">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Int16" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Int32">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Int32" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.Int64">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.Int64" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.UInt32">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.UInt32" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.UInt16">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.UInt16" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Explicit(HpTimeStamps.BigMath.Int128@)~System.UInt64">
<summary>
Performs an explicit conversion from <see cref="T:HpTimeStamps.BigMath.Int128" /> to <see cref="T:System.UInt64" />.
</summary>
<param name="value">The value.</param>
<returns>
The result of the conversion.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_GreaterThan(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator >.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_LessThan(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator <.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_GreaterThanOrEqual(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator >=.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_LessThanOrEqual(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator <=.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Inequality(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator !=.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Equality(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator ==.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_UnaryPlus(HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator +.
</summary>
<param name="value">The value.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_UnaryNegation(HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator -.
</summary>
<param name="value">The value.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Addition(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator +.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Subtraction(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator -.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Multiply(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator *.
</summary>
<param name="left">The x.</param>
<param name="right">The y.</param>
<returns>
The result of the operator.
</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_RightShift(HpTimeStamps.BigMath.Int128@,System.Int32)">
<summary>
Implements the operator >>.
</summary>
<param name="lhs">The value.</param>
<param name="amount">The shift.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_LeftShift(HpTimeStamps.BigMath.Int128@,System.Int32)">
<summary>
Implements the operator <<.
</summary>
<param name="value">The value.</param>
<param name="amount">The shift.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_ExclusiveOr(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
XOR bitwise operator
</summary>
<param name="left">left hand operand</param>
<param name="right">right hand operand</param>
<returns>value that is <paramref name="left"/> bitwise-xor'd
with <paramref name="right"/>.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_BitwiseOr(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator |.
</summary>
<param name="left">The left.</param>
<param name="right">The right.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_BitwiseAnd(HpTimeStamps.BigMath.Int128@,HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator &.
</summary>
<param name="left">The left.</param>
<param name="right">The right.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_OnesComplement(HpTimeStamps.BigMath.Int128@)">
<summary>
Implements the operator ~.
</summary>
<param name="value">The value.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Increment(HpTimeStamps.BigMath.Int128)">
<summary>
Implements the operator ++.
</summary>
<param name="value">The value.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Int128.op_Decrement(HpTimeStamps.BigMath.Int128)">
<summary>
Implements the operator --.
</summary>
<param name="value">The value.</param>
<returns>The result of the operator.</returns>
</member>
<member name="T:HpTimeStamps.BigMath.Utils.ArrayUtils">
<summary>
Utils for the <see cref="T:System.Array" /> class.
</summary>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.ConvertAll``2(``0[],System.Func{``0,``1})">
<summary>
Converts an array of one type to an array of another type.
</summary>
<returns>
An array of the target type containing the converted elements from the source array.
</returns>
<param name="array">The one-dimensional, zero-based <see cref="T:System.Array" /> to convert to a target type.</param>
<param name="convert">A <see cref="T:System.Func`2" /> that converts each element from one type to another type.</param>
<typeparam name="TInput">The type of the elements of the source array.</typeparam>
<typeparam name="TOutput">The type of the elements of the target array.</typeparam>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is null.-or-<paramref name="convert" /> is
null.
</exception>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.GetNonZeroLength(System.Byte[],System.Nullable{System.Boolean})">
<summary>
Get length of serial non zero items.
</summary>
<param name="bytes">Array of bytes.</param>
<param name="asLittleEndian">True - skip all zero items from high. False - skip all zero items from low.</param>
<returns>Length of serial non zero items.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.TrimZeros(System.Byte[],System.Nullable{System.Boolean})">
<summary>
Trim zero items.
</summary>
<param name="bytes">Array of bytes.</param>
<param name="asLittleEndian">True - trim from high, False - trim from low.</param>
<returns>Trimmed array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.ToHexString(System.Byte[],System.Boolean,System.Int32,System.Boolean,System.Boolean)">
<summary>
Converts array of bytes to hexadecimal string.
</summary>
<param name="bytes">Bytes.</param>
<param name="caps">Capitalize chars.</param>
<param name="min">Minimum string length. 0 if there is no minimum length.</param>
<param name="spaceEveryByte">Space every byte.</param>
<param name="trimZeros">Trim zeros in the result string.</param>
<returns>Hexadecimal string representation of the bytes array.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.ToHexString(System.ArraySegment{System.Byte},System.Boolean,System.Int32,System.Boolean,System.Boolean)">
<summary>
Converts array of bytes to hexadecimal string.
</summary>
<param name="bytes">Bytes.</param>
<param name="caps">Capitalize chars.</param>
<param name="min">Minimum string length. 0 if there is no minimum length.</param>
<param name="spaceEveryByte">Space every byte.</param>
<param name="trimZeros">Trim zeros in the result string.</param>
<returns>Hexadecimal string representation of the bytes array.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ArrayUtils.HexToBytes(System.String)">
<summary>
Converts string of hex numbers to array of bytes.
</summary>
<param name="hexString">String value.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.CjmUtils.Fls128(HpTimeStamps.BigMath.Int128@)">
<summary>
Return the bitpos of the most significant set bit (i.e. with value == 1).
Adapted from Abseil.IO's ABSL_ATTRIBUTE_ALWAYS_INLINE int Fls128(uint128 n) function found at
https://raw.githubusercontent.com/abseil/abseil-cpp/master/absl/numeric/int128.cc .
Unlike <see cref="M:HpTimeStamps.BigMath.Utils.CjmUtils.CountLeadingZeros(System.UInt64)"/> which I have absolutely no idea how it works, this seems pretty
straight forward ... except insofar as it relies on the WTFishness of <see cref="M:HpTimeStamps.BigMath.Utils.CjmUtils.CountLeadingZeros(System.UInt64)"/>.
</summary>
<param name="testMe">the value to test</param>
<returns>the bitpos of the most significant bit whose value is one (0 to 127).</returns>
<remarks>DO NOT SEND THIS FUNCTION ZERO AS A VALUE!</remarks>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.CjmUtils.Fls128(HpTimeStamps.BigMath.UInt128@)">
<summary>
Return the bitpos of the most significant set bit (i.e. with value == 1).
Adapted from Abseil.IO's ABSL_ATTRIBUTE_ALWAYS_INLINE int Fls128(uint128 n) function found at
https://raw.githubusercontent.com/abseil/abseil-cpp/master/absl/numeric/int128.cc .
Unlike <see cref="M:HpTimeStamps.BigMath.Utils.CjmUtils.CountLeadingZeros(System.UInt64)"/> which I have absolutely no idea how it works, this seems pretty
straight forward ... except insofar as it relies on the WTFishness of <see cref="M:HpTimeStamps.BigMath.Utils.CjmUtils.CountLeadingZeros(System.UInt64)"/>.
</summary>
<param name="testMe">the value to test</param>
<returns>the bitpos of the most significant bit whose value is one (0 to 127).</returns>
<remarks>DO NOT SEND THIS FUNCTION ZERO AS A VALUE!</remarks>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.CjmUtils.CountLeadingZeros(System.UInt64)">
<summary>
I have no idea how or why this works ... I adapted it from abseil.io's
function ABSL_BASE_INTERNAL_FORCEINLINE int CountLeadingZeros64Slow(uint64_t n) at
https://raw.githubusercontent.com/abseil/abseil-cpp/master/absl/base/internal/bits.h.
It comes from google d00dz and passes unit testing, so I'm calling it good.
</summary>
<param name="n">the ulong you want to get the leading zero count for.</param>
<returns>the leading zero count</returns>
<exception cref="T:System.ArgumentOutOfRangeException">Zero is not a permissible value.</exception>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.CjmUtils.UnsignedShiftRight(HpTimeStamps.BigMath.Int128@,System.Int32)">
<summary>
Taken from abseil.io's uint128 operator>>(uint128 lhs, int amount)
at <see link="https://raw.githubusercontent.com/abseil/abseil-cpp/master/absl/numeric/int128.h"/>
</summary>
<param name="shiftUs">value to shift</param>
<param name="amount">amount to shift</param>
<returns>the amount shifted right as if it were unsigned</returns>
</member>
<member name="T:HpTimeStamps.BigMath.Utils.Crc32">
<summary>
Crc32 calculator.
</summary>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.Crc32.Init">
<summary>
Reset CRC.
</summary>
</member>
<member name="T:HpTimeStamps.BigMath.Utils.ExtendedBitConverter">
<summary>
Bit converter methods which support explicit endian.
</summary>
</member>
<member name="F:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.IsLittleEndian">
<summary>
Indicates the byte order ("endianness") in which data is stored in this computer architecture.
</summary>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.Int16,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.Int16" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.Int16,System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.Int16" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="buffer">Buffer at least 2 bytes.</param>
<param name="offset">The starting position within <paramref name="buffer" />.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToInt16(System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts array of bytes to <see cref="T:System.Int16" />.
</summary>
<param name="bytes">An array of bytes.</param>
<param name="offset">The starting position within <paramref name="bytes" />.</param>
<param name="asLittleEndian">Convert from little endian.</param>
<returns><see cref="T:System.Int16" /> value.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.UInt16,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.UInt16" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.UInt16,System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.UInt16" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="buffer">Buffer at least 2 bytes.</param>
<param name="offset">The starting position within <paramref name="buffer" />.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToUInt16(System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts array of bytes to <see cref="T:System.UInt16" />.
</summary>
<param name="bytes">An array of bytes.</param>
<param name="offset">The starting position within <paramref name="bytes" />.</param>
<param name="asLittleEndian">Convert from little endian.</param>
<returns><see cref="T:System.UInt16" /> value.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.Int32" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.Int32,System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.Int32" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="buffer">Buffer at least 4 bytes.</param>
<param name="offset">The starting position within <paramref name="buffer" />.</param>
<param name="asLittleEndian">Convert to little endian.</param>
<returns>Array of bytes.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToInt32(System.Byte[],System.Int32,System.Nullable{System.Boolean})">
<summary>
Converts array of bytes to <see cref="T:System.Int32" />.
</summary>
<param name="bytes">An array of bytes.</param>
<param name="offset">The starting position within <paramref name="bytes" />.</param>
<param name="asLittleEndian">Convert from little endian.</param>
<returns><see cref="T:System.Int32" /> value.</returns>
</member>
<member name="M:HpTimeStamps.BigMath.Utils.ExtendedBitConverter.ToBytes(System.UInt32,System.Nullable{System.Boolean})">
<summary>
Converts <see cref="T:System.UInt32" /> to array of bytes.
</summary>
<param name="value">Value.</param>
<param name="asLittleEndian">Convert to little endian.</param>