Skip to content

Commit a816ac1

Browse files
committed
Nonsubstantive code edits
1 parent 915733f commit a816ac1

16 files changed

+244
-268
lines changed

Numbers/PeterO/DebugUtility.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Any copyright to this work is released to the Public Domain.
99
using System.Diagnostics.CodeAnalysis;
1010
using System.Reflection;
1111
// Use directives rather than the Conditional attribute,
12-
// to avoid the chance of logging statements leaking in release builds
12+
// to avoid the chance of logging statements leaking in release builds
1313
#if DEBUGLOG
1414
namespace PeterO {
1515
internal static class DebugUtility {
@@ -32,7 +32,7 @@ private static MethodInfo GetTypeMethod(
3232
#if NET40 || NET20
3333
return t.GetMethod(name, new[] { parameter });
3434
#else
35-
{
35+
{
3636
return t?.GetRuntimeMethod(name, parameters);
3737
}
3838
#endif
@@ -58,7 +58,7 @@ public static void Log(string str) {
5858
System.Diagnostics.Debug.WriteLine(str);
5959
return;
6060
#else
61-
{
61+
{
6262
throw new NotSupportedException("System.Console not found");
6363
}
6464
#endif

Numbers/PeterO/Numbers/EDecimal.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -4538,8 +4538,8 @@ public EDecimal RemainderNaturalScale(
45384538
EDecimal divisor,
45394539
EContext ctx) {
45404540
return this.Subtract(
4541-
this.DivideToIntegerNaturalScale(divisor, null).Multiply(divisor, null),
4542-
ctx);
4541+
this.DivideToIntegerNaturalScale(divisor, null).Multiply(divisor, null),
4542+
ctx);
45434543
}
45444544

45454545
/// <summary>Finds the distance to the closest multiple of the
@@ -5534,8 +5534,7 @@ public short ToHalfBits() {
55345534
return unchecked((short)smallmantissa);
55355535
}
55365536
}
5537-
*/
5538-
}
5537+
*/ }
55395538
if (this.exponent.CompareToInt(39) > 0) {
55405539
// Very high exponent, treat as infinity
55415540
return this.IsNegative ? unchecked((short)(EFloat.Binary16Infinity +

Numbers/PeterO/Numbers/EDecimalExtra.cs

+24-24
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ public static explicit operator float(EDecimal bigValue) {
336336
/// <exception cref='ArgumentNullException'>The parameter <paramref
337337
/// name='input'/> is null.</exception>
338338
[System.Diagnostics.CodeAnalysis.SuppressMessage(
339-
"Microsoft.Usage",
340-
"CA2225",
341-
Justification = "Class implements an alternate method named ToByteChecked.")]
339+
"Microsoft.Usage",
340+
"CA2225",
341+
Justification = "Class implements an alternate method named ToByteChecked.")]
342342
public static explicit operator byte(EDecimal input) {
343343
if (input == null) {
344344
throw new ArgumentNullException(nameof(input));
@@ -438,9 +438,9 @@ public static EDecimal FromSByte(sbyte inputSByte) {
438438
/// name='input'/> is null.</exception>
439439
[CLSCompliant(false)]
440440
[System.Diagnostics.CodeAnalysis.SuppressMessage(
441-
"Microsoft.Usage",
442-
"CA2225",
443-
Justification = "Class implements an alternate method named ToSByteChecked.")]
441+
"Microsoft.Usage",
442+
"CA2225",
443+
Justification = "Class implements an alternate method named ToSByteChecked.")]
444444
public static explicit operator sbyte(EDecimal input) {
445445
if (input == null) {
446446
throw new ArgumentNullException(nameof(input));
@@ -474,9 +474,9 @@ public static implicit operator EDecimal(sbyte inputSByte) {
474474
/// <exception cref='ArgumentNullException'>The parameter <paramref
475475
/// name='input'/> is null.</exception>
476476
[System.Diagnostics.CodeAnalysis.SuppressMessage(
477-
"Microsoft.Usage",
478-
"CA2225",
479-
Justification = "Class implements an alternate method named ToInt16Checked.")]
477+
"Microsoft.Usage",
478+
"CA2225",
479+
Justification = "Class implements an alternate method named ToInt16Checked.")]
480480
public static explicit operator short(EDecimal input) {
481481
if (input == null) {
482482
throw new ArgumentNullException(nameof(input));
@@ -580,9 +580,9 @@ public static EDecimal FromUInt16(ushort inputUInt16) {
580580
/// name='input'/> is null.</exception>
581581
[CLSCompliant(false)]
582582
[System.Diagnostics.CodeAnalysis.SuppressMessage(
583-
"Microsoft.Usage",
584-
"CA2225",
585-
Justification = "Class implements an alternate method named ToUInt16Checked.")]
583+
"Microsoft.Usage",
584+
"CA2225",
585+
Justification = "Class implements an alternate method named ToUInt16Checked.")]
586586
public static explicit operator ushort(EDecimal input) {
587587
if (input == null) {
588588
throw new ArgumentNullException(nameof(input));
@@ -616,9 +616,9 @@ public static implicit operator EDecimal(ushort inputUInt16) {
616616
/// <exception cref='ArgumentNullException'>The parameter <paramref
617617
/// name='input'/> is null.</exception>
618618
[System.Diagnostics.CodeAnalysis.SuppressMessage(
619-
"Microsoft.Usage",
620-
"CA2225",
621-
Justification = "Class implements an alternate method named ToInt32Checked.")]
619+
"Microsoft.Usage",
620+
"CA2225",
621+
Justification = "Class implements an alternate method named ToInt32Checked.")]
622622
public static explicit operator int(EDecimal input) {
623623
if (input == null) {
624624
throw new ArgumentNullException(nameof(input));
@@ -721,9 +721,9 @@ public static EDecimal FromUInt32(uint inputUInt32) {
721721
/// name='input'/> is null.</exception>
722722
[CLSCompliant(false)]
723723
[System.Diagnostics.CodeAnalysis.SuppressMessage(
724-
"Microsoft.Usage",
725-
"CA2225",
726-
Justification = "Class implements an alternate method named ToUInt32Checked.")]
724+
"Microsoft.Usage",
725+
"CA2225",
726+
Justification = "Class implements an alternate method named ToUInt32Checked.")]
727727
public static explicit operator uint(EDecimal input) {
728728
if (input == null) {
729729
throw new ArgumentNullException(nameof(input));
@@ -758,9 +758,9 @@ public static implicit operator EDecimal(uint inputUInt32) {
758758
/// <exception cref='ArgumentNullException'>The parameter <paramref
759759
/// name='input'/> is null.</exception>
760760
[System.Diagnostics.CodeAnalysis.SuppressMessage(
761-
"Microsoft.Usage",
762-
"CA2225",
763-
Justification = "Class implements an alternate method named ToInt64Checked.")]
761+
"Microsoft.Usage",
762+
"CA2225",
763+
Justification = "Class implements an alternate method named ToInt64Checked.")]
764764
public static explicit operator long(EDecimal input) {
765765
if (input == null) {
766766
throw new ArgumentNullException(nameof(input));
@@ -863,9 +863,9 @@ public static EDecimal FromUInt64(ulong inputUInt64) {
863863
/// name='input'/> is null.</exception>
864864
[CLSCompliant(false)]
865865
[System.Diagnostics.CodeAnalysis.SuppressMessage(
866-
"Microsoft.Usage",
867-
"CA2225",
868-
Justification = "Class implements an alternate method named ToUInt64Checked.")]
866+
"Microsoft.Usage",
867+
"CA2225",
868+
Justification = "Class implements an alternate method named ToUInt64Checked.")]
869869
public static explicit operator ulong(EDecimal input) {
870870
if (input == null) {
871871
throw new ArgumentNullException(nameof(input));

Numbers/PeterO/Numbers/EDecimals.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1044,9 +1044,9 @@ internal static byte[] FromLogical(EDecimal ed, EContext ec, int iradix) {
10441044
}
10451045
return (!ed.IsFinite || ed.IsNegative || ed.Exponent.Sign != 0 ||
10461046
ed.Mantissa.Sign < 0) ? null : FromLogical(
1047-
ed.UnsignedMantissa,
1048-
ec,
1049-
iradix);
1047+
ed.UnsignedMantissa,
1048+
ec,
1049+
iradix);
10501050
}
10511051

10521052
internal static byte[] FromLogical(EFloat ed, EContext ec, int iradix) {
@@ -1057,9 +1057,9 @@ internal static byte[] FromLogical(EFloat ed, EContext ec, int iradix) {
10571057
// IsPrecisionInBits here
10581058
return (!ed.IsFinite || ed.IsNegative || ed.Exponent.Sign != 0 ||
10591059
ed.Mantissa.Sign < 0) ? null : FromLogical(
1060-
ed.UnsignedMantissa,
1061-
ec,
1062-
iradix);
1060+
ed.UnsignedMantissa,
1061+
ec,
1062+
iradix);
10631063
}
10641064
}
10651065
}

Numbers/PeterO/Numbers/EFloat.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3420,8 +3420,8 @@ public EFloat RemainderNaturalScale(
34203420
EFloat divisor,
34213421
EContext ctx) {
34223422
return this.Subtract(
3423-
this.DivideToIntegerNaturalScale(divisor, null).Multiply(divisor, null),
3424-
ctx);
3423+
this.DivideToIntegerNaturalScale(divisor, null).Multiply(divisor, null),
3424+
ctx);
34253425
}
34263426

34273427
/// <summary>Finds the distance to the closest multiple of the

Numbers/PeterO/Numbers/EFloatExtra.cs

+24-24
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ public static explicit operator float(EFloat bigValue) {
290290
/// <exception cref='ArgumentNullException'>The parameter <paramref
291291
/// name='input'/> is null.</exception>
292292
[System.Diagnostics.CodeAnalysis.SuppressMessage(
293-
"Microsoft.Usage",
294-
"CA2225",
295-
Justification = "Class implements an alternate method named ToByteChecked.")]
293+
"Microsoft.Usage",
294+
"CA2225",
295+
Justification = "Class implements an alternate method named ToByteChecked.")]
296296
public static explicit operator byte(EFloat input) {
297297
if (input == null) {
298298
throw new ArgumentNullException(nameof(input));
@@ -381,9 +381,9 @@ public static EFloat FromSByte(sbyte inputSByte) {
381381
/// name='input'/> is null.</exception>
382382
[CLSCompliant(false)]
383383
[System.Diagnostics.CodeAnalysis.SuppressMessage(
384-
"Microsoft.Usage",
385-
"CA2225",
386-
Justification = "Class implements an alternate method named ToSByteChecked.")]
384+
"Microsoft.Usage",
385+
"CA2225",
386+
Justification = "Class implements an alternate method named ToSByteChecked.")]
387387
public static explicit operator sbyte(EFloat input) {
388388
if (input == null) {
389389
throw new ArgumentNullException(nameof(input));
@@ -417,9 +417,9 @@ public static implicit operator EFloat(sbyte inputSByte) {
417417
/// <exception cref='ArgumentNullException'>The parameter <paramref
418418
/// name='input'/> is null.</exception>
419419
[System.Diagnostics.CodeAnalysis.SuppressMessage(
420-
"Microsoft.Usage",
421-
"CA2225",
422-
Justification = "Class implements an alternate method named ToInt16Checked.")]
420+
"Microsoft.Usage",
421+
"CA2225",
422+
Justification = "Class implements an alternate method named ToInt16Checked.")]
423423
public static explicit operator short(EFloat input) {
424424
if (input == null) {
425425
throw new ArgumentNullException(nameof(input));
@@ -509,9 +509,9 @@ public static EFloat FromUInt16(ushort inputUInt16) {
509509
/// name='input'/> is null.</exception>
510510
[CLSCompliant(false)]
511511
[System.Diagnostics.CodeAnalysis.SuppressMessage(
512-
"Microsoft.Usage",
513-
"CA2225",
514-
Justification = "Class implements an alternate method named ToUInt16Checked.")]
512+
"Microsoft.Usage",
513+
"CA2225",
514+
Justification = "Class implements an alternate method named ToUInt16Checked.")]
515515
public static explicit operator ushort(EFloat input) {
516516
if (input == null) {
517517
throw new ArgumentNullException(nameof(input));
@@ -545,9 +545,9 @@ public static implicit operator EFloat(ushort inputUInt16) {
545545
/// <exception cref='ArgumentNullException'>The parameter <paramref
546546
/// name='input'/> is null.</exception>
547547
[System.Diagnostics.CodeAnalysis.SuppressMessage(
548-
"Microsoft.Usage",
549-
"CA2225",
550-
Justification = "Class implements an alternate method named ToInt32Checked.")]
548+
"Microsoft.Usage",
549+
"CA2225",
550+
Justification = "Class implements an alternate method named ToInt32Checked.")]
551551
public static explicit operator int(EFloat input) {
552552
if (input == null) {
553553
throw new ArgumentNullException(nameof(input));
@@ -636,9 +636,9 @@ public static EFloat FromUInt32(uint inputUInt32) {
636636
/// name='input'/> is null.</exception>
637637
[CLSCompliant(false)]
638638
[System.Diagnostics.CodeAnalysis.SuppressMessage(
639-
"Microsoft.Usage",
640-
"CA2225",
641-
Justification = "Class implements an alternate method named ToUInt32Checked.")]
639+
"Microsoft.Usage",
640+
"CA2225",
641+
Justification = "Class implements an alternate method named ToUInt32Checked.")]
642642
public static explicit operator uint(EFloat input) {
643643
if (input == null) {
644644
throw new ArgumentNullException(nameof(input));
@@ -673,9 +673,9 @@ public static implicit operator EFloat(uint inputUInt32) {
673673
/// <exception cref='ArgumentNullException'>The parameter <paramref
674674
/// name='input'/> is null.</exception>
675675
[System.Diagnostics.CodeAnalysis.SuppressMessage(
676-
"Microsoft.Usage",
677-
"CA2225",
678-
Justification = "Class implements an alternate method named ToInt64Checked.")]
676+
"Microsoft.Usage",
677+
"CA2225",
678+
Justification = "Class implements an alternate method named ToInt64Checked.")]
679679
public static explicit operator long(EFloat input) {
680680
if (input == null) {
681681
throw new ArgumentNullException(nameof(input));
@@ -764,9 +764,9 @@ public static EFloat FromUInt64(ulong inputUInt64) {
764764
/// name='input'/> is null.</exception>
765765
[CLSCompliant(false)]
766766
[System.Diagnostics.CodeAnalysis.SuppressMessage(
767-
"Microsoft.Usage",
768-
"CA2225",
769-
Justification = "Class implements an alternate method named ToUInt64Checked.")]
767+
"Microsoft.Usage",
768+
"CA2225",
769+
Justification = "Class implements an alternate method named ToUInt64Checked.")]
770770
public static explicit operator ulong(EFloat input) {
771771
if (input == null) {
772772
throw new ArgumentNullException(nameof(input));

0 commit comments

Comments
 (0)