You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DescEx="<p>Raises integer <var>X</var> to non-negative integer power <var>N</var>.</p>"
1394
+
DescEx="<p>Raises integer <var>X</var> to non-negative integer power <var>N</var>.</p><p>If the result is too large to be represented as an <var>Int64</var> value then an <var>EOverflow</var> exception is raised.</p>"
1395
1395
Extra="<p>Returns an <var>integer</var> value because the power <var>N</var> is non-negative which guarantees that the result is integral.</p><p>Based on IEEE standard 754-2008 for Floating-Point Arithmetic, page 44, but which restricts <var>X</var> to an integer and <var>N</var> to a non-negative integer.</p>"
1396
+
Units=SysUtils
1396
1397
SeeAlso=Pow,PowN,PowNZZ
1397
1398
TestInfo=advanced
1398
1399
AdvancedTest.Level=unit-tests
@@ -1762,7 +1763,7 @@ DisplayName="DigitSumBase"
1762
1763
DescEx="<p>Calculates the sum of all the digits of integer <var>N</var> when epxressed in base <var>Base</var>. The returned value has the same sign as <var>N</var>.</p><p>Bases up to 255 are supported. If <var>Base</var> < 2 then an <var>EArgumentException</var> exception is raised.</p>"
DescEx="<p>Calculates the sum of all the digits of integer <var>N</var> in base <var>Base</var> where each digit is raised to the power <var>Exponent</var>. The returned value has the same sign as <var>N</var>.</p><p>If the result is too large to be represented as an <var>Int64</var> value then an <var>EOverflow</var> exception is raised.</p><p>Bases up to 255 are supported. If <var>Base</var> <= 2 then an <var>EArgumentException</var> exception is raised.</p>"
0 commit comments