1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-09-30 07:20:48 +00:00
This commit is contained in:
Michael Mclaughlin 2017-01-10 23:25:40 +00:00
parent c9273ccb08
commit 327153d7a4

View File

@ -76,7 +76,7 @@ li span{float:right;margin-right:10px;color:#c0c0c0}
<li><a href="#Datan2" >atan2</a></li> <li><a href="#Datan2" >atan2</a></li>
<li><a href="#Dcbrt" >cbrt</a></li> <li><a href="#Dcbrt" >cbrt</a></li>
<li><a href="#Dceil" >ceil</a></li> <li><a href="#Dceil" >ceil</a></li>
<li><a href="#Dclone" ><strong>clone</strong></a></li> <li><a href="#Dclone" >clone</a></li>
<li><a href="#Dcos" >cos</a></li> <li><a href="#Dcos" >cos</a></li>
<li><a href="#Dcosh" >cosh</a></li> <li><a href="#Dcosh" >cosh</a></li>
<li><a href="#Ddiv" >div</a></li> <li><a href="#Ddiv" >div</a></li>
@ -91,11 +91,11 @@ li span{float:right;margin-right:10px;color:#c0c0c0}
<li><a href="#Dmin" >min</a></li> <li><a href="#Dmin" >min</a></li>
<li><a href="#Dmod" >mod</a></li> <li><a href="#Dmod" >mod</a></li>
<li><a href="#Dmul" >mul</a></li> <li><a href="#Dmul" >mul</a></li>
<li><a href="#DnoConflict"><strong>noConflict</strong></a></li> <li><a href="#DnoConflict">noConflict</a></li>
<li><a href="#Dpow" >pow</a></li> <li><a href="#Dpow" >pow</a></li>
<li><a href="#Drandom" >random</a></li> <li><a href="#Drandom" >random</a></li>
<li><a href="#Dround" >round</a></li> <li><a href="#Dround" >round</a></li>
<li><a href="#Dset" ><strong>set</strong></a></li> <li><a href="#Dset" >set</a></li>
<li><a href="#Dsign" >sign</a></li> <li><a href="#Dsign" >sign</a></li>
<li><a href="#Dsin" >sin</a></li> <li><a href="#Dsin" >sin</a></li>
<li><a href="#Dsinh" >sinh</a></li> <li><a href="#Dsinh" >sinh</a></li>
@ -740,7 +740,7 @@ Decimal.set({
<p> <p>
The properties of a Decimal constructor can also be set by direct assignment, but that will The properties of a Decimal constructor can also be set by direct assignment, but that will
by-pass the validity checking that this method performs - this is not a problem if the user by-pass the validity checking that this method performs - this is not a problem if the user
knows that the assingment is valid. knows that the assignment is valid.
</p> </p>
<pre>Decimal.precision = 40</pre> <pre>Decimal.precision = 40</pre>