aboutsummaryrefslogtreecommitdiff
path: root/branch-1.1.x/math-api.html
diff options
context:
space:
mode:
Diffstat (limited to 'branch-1.1.x/math-api.html')
-rw-r--r--branch-1.1.x/math-api.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/branch-1.1.x/math-api.html b/branch-1.1.x/math-api.html
index 4c678445..6ef47961 100644
--- a/branch-1.1.x/math-api.html
+++ b/branch-1.1.x/math-api.html
@@ -145,7 +145,7 @@ exact-integer-sqrt - Implements a math function from the R6RS Scheme
<pre id="var-docstr">(abs n) is the absolute value of n</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L122" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L122" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -157,7 +157,7 @@ exact-integer-sqrt - Implements a math function from the R6RS Scheme
If n is an exact number, ceil returns an integer, otherwise a double.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L141" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L141" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -169,7 +169,7 @@ If n is an exact number, ceil returns an integer, otherwise a double.</pre>
For example, (exact-integer-sqrt 15) is [3 6] because 15 = 3^2+6.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L206" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L206" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -181,7 +181,7 @@ For example, (exact-integer-sqrt 15) is [3 6] because 15 = 3^2+6.</pre>
Returns an exact number if the base is an exact number and the power is an integer, otherwise returns a double.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L101" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L101" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -193,7 +193,7 @@ Returns an exact number if the base is an exact number and the power is an integ
If n is an exact number, floor returns an integer, otherwise a double.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L129" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L129" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -204,7 +204,7 @@ If n is an exact number, floor returns an integer, otherwise a double.</pre>
<pre id="var-docstr">(gcd a b) returns the greatest common divisor of a and b</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L162" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L162" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -215,7 +215,7 @@ If n is an exact number, floor returns an integer, otherwise a double.</pre>
<pre id="var-docstr">(lcm a b) returns the least common multiple of a and b</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L169" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L169" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -227,7 +227,7 @@ If n is an exact number, floor returns an integer, otherwise a double.</pre>
round always returns an integer. Rounds up for values exactly in between two integers.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L153" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L153" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -238,7 +238,7 @@ round always returns an integer. Rounds up for values exactly in between two in
<pre id="var-docstr">Square root, but returns exact number if possible.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L215" id="var-source">Source</a>
+ <a href="http://github.com/clojure/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/math.clj#L215" id="var-source">Source</a>
</div>
@@ -248,7 +248,7 @@ round always returns an integer. Rounds up for values exactly in between two in
</div>
</div>
<div id="foot">
- <div style="text-align: center;" id="copyright">Copyright 2007-2009 by Rich Hickey and the various contributors</div>
+ <div style="text-align: center;" id="copyright">Copyright 2007-2010 by Rich Hickey and the various contributors</div>
</div>
</div>
<div id="DesignedBy">Logo &amp; site design by <a title="Visit Tom Hickey's website." href="http://www.tomhickey.com">Tom Hickey</a>.<br />