@@ -527,10 +527,11 @@ public EInteger Precision {
527
527
}
528
528
529
529
/// <summary>Gets the desired rounding mode when converting numbers
530
- /// that can't be represented in the given precision and exponent
530
+ /// that can't be represented in the specified precision and exponent
531
531
/// range.</summary>
532
532
/// <value>The desired rounding mode when converting numbers that can't
533
- /// be represented in the given precision and exponent range.</value>
533
+ /// be represented in the specified precision and exponent
534
+ /// range.</value>
534
535
public ERounding Rounding {
535
536
get {
536
537
return this . rounding ;
@@ -561,9 +562,9 @@ public int Traps {
561
562
}
562
563
}
563
564
564
- /// <summary>Creates a new arithmetic context using the given maximum
565
- /// number of digits, an unlimited exponent range, and the HalfUp
566
- /// rounding mode.</summary>
565
+ /// <summary>Creates a new arithmetic context using the specified
566
+ /// maximum number of digits, an unlimited exponent range, and the
567
+ /// HalfUp rounding mode.</summary>
567
568
/// <param name='precision'>Maximum number of digits
568
569
/// (precision).</param>
569
570
/// <returns>A context object for arbitrary-precision arithmetic
@@ -578,8 +579,8 @@ public static EContext ForPrecision(int precision) {
578
579
}
579
580
580
581
/// <summary>Creates a new EContext object initialized with an
581
- /// unlimited exponent range, and the given rounding mode and maximum
582
- /// precision.</summary>
582
+ /// unlimited exponent range, and the specified rounding mode and
583
+ /// maximum precision.</summary>
583
584
/// <param name='precision'>Maximum number of digits
584
585
/// (precision).</param>
585
586
/// <param name='rounding'>The parameter <paramref name='rounding'/> is
@@ -612,7 +613,7 @@ public static EContext ForPrecisionAndRounding(
612
613
false ) . WithUnlimitedExponents ( ) ;
613
614
614
615
/// <summary>Creates a new EContext object initialized with an
615
- /// unlimited precision, an unlimited exponent range, and the given
616
+ /// unlimited precision, an unlimited exponent range, and the specified
616
617
/// rounding mode.</summary>
617
618
/// <param name='rounding'>The rounding mode for the new precision
618
619
/// context.</param>
@@ -653,11 +654,11 @@ public EContext Copy() {
653
654
this . traps ) ;
654
655
}
655
656
656
- /// <summary>Determines whether a number can have the given Exponent
657
- /// property under this arithmetic context.</summary>
657
+ /// <summary>Determines whether a number can have the specified
658
+ /// Exponent property under this arithmetic context.</summary>
658
659
/// <param name='exponent'>An arbitrary-precision integer indicating
659
660
/// the desired exponent.</param>
660
- /// <returns><c>true</c> if a number can have the given Exponent
661
+ /// <returns><c>true</c> if a number can have the specified Exponent
661
662
/// property under this arithmetic context; otherwise, <c>false</c>.
662
663
/// If this context allows unlimited precision, returns true for the
663
664
/// exponent EMax and any exponent less than EMax.</returns>
@@ -715,7 +716,7 @@ public bool HasFlagsOrTraps {
715
716
}
716
717
717
718
/// <summary>Copies this EContext and sets the copy's "AdjustExponent"
718
- /// property to the given value.</summary>
719
+ /// property to the specified value.</summary>
719
720
/// <param name='adjustExponent'>The new value of the "AdjustExponent"
720
721
/// property for the copy.</param>
721
722
/// <returns>A context object for arbitrary-precision arithmetic
@@ -829,7 +830,7 @@ public EContext WithBlankFlags() {
829
830
}
830
831
831
832
/// <summary>Copies this arithmetic context and sets the copy's
832
- /// "ClampNormalExponents" flag to the given value.</summary>
833
+ /// "ClampNormalExponents" flag to the specified value.</summary>
833
834
/// <param name='clamp'>The desired value of the "ClampNormalExponents"
834
835
/// flag.</param>
835
836
/// <returns>A context object for arbitrary-precision arithmetic
@@ -897,7 +898,7 @@ public EContext WithPrecision(int precision) {
897
898
}
898
899
899
900
/// <summary>Copies this EContext and sets the copy's
900
- /// "IsPrecisionInBits" property to the given value.</summary>
901
+ /// "IsPrecisionInBits" property to the specified value.</summary>
901
902
/// <param name='isPrecisionBits'>The new value of the
902
903
/// "IsPrecisionInBits" property for the copy.</param>
903
904
/// <returns>A context object for arbitrary-precision arithmetic
@@ -941,7 +942,7 @@ public EContext WithRounding(ERounding rounding) {
941
942
}
942
943
943
944
/// <summary>Copies this EContext and sets the copy's "IsSimplified"
944
- /// property to the given value.</summary>
945
+ /// property to the specified value.</summary>
945
946
/// <param name='simplified'>Desired value of the IsSimplified
946
947
/// property.</param>
947
948
/// <returns>A context object for arbitrary-precision arithmetic
@@ -962,9 +963,9 @@ public EContext WithSimplified(bool simplified) {
962
963
this . traps ) ;
963
964
}
964
965
965
- /// <summary>Copies this EContext with Traps set to the given value.
966
- /// (Also sets HasFlags on the copy to <c>True</c>, but this may
967
- /// change in version 2.0 of this library.).</summary>
966
+ /// <summary>Copies this EContext with Traps set to the specified
967
+ /// value. (Also sets HasFlags on the copy to <c>True</c>, but this
968
+ /// may change in version 2.0 of this library.).</summary>
968
969
/// <param name='traps'>Flags representing the traps to enable. See the
969
970
/// property "Traps".</param>
970
971
/// <returns>A context object for arbitrary-precision arithmetic
@@ -1018,11 +1019,12 @@ public EContext GetNontrapping() {
1018
1019
return ( this . Traps == 0 ) ? this : this . WithTraps ( 0 ) . WithBlankFlags ( ) ;
1019
1020
}
1020
1021
1021
- /// <summary>Throws trap exceptions if the given context has flags set
1022
- /// that also have traps enabled for them in this context, and adds the
1023
- /// given context's flags to this context if HasFlags for this context
1024
- /// is true. This is not a general-purpose method; it is intended to
1025
- /// support custom implementations of arithmetic operations.</summary>
1022
+ /// <summary>Throws trap exceptions if the specified context has flags
1023
+ /// set that also have traps enabled for them in this context, and adds
1024
+ /// the specified context's flags to this context if HasFlags for this
1025
+ /// context is true. This is not a general-purpose method; it is
1026
+ /// intended to support custom implementations of arithmetic
1027
+ /// operations.</summary>
1026
1028
/// <param name='result'>The result of the operation.</param>
1027
1029
/// <param name='trappableContext'>An arithmetic context, usually a
1028
1030
/// context returned by the GetNontrapping method. Can be null.</param>
0 commit comments