diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-05-03 07:02:34 +0000 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-05-03 07:02:34 +0000 |
commit | a4b8d24cb2f4e79fa3856db37d5fcf1d94003b30 (patch) | |
tree | c86eb1ca154a03a49cc03dfa3c3d50b93892061c /src/clojure/contrib/combinatorics.clj | |
parent | c1e9b640e557065cbf539a60741bc98c46cc825f (diff) |
Beginning to add namespace documentation for all namespaces.
Diffstat (limited to 'src/clojure/contrib/combinatorics.clj')
-rw-r--r-- | src/clojure/contrib/combinatorics.clj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/clojure/contrib/combinatorics.clj b/src/clojure/contrib/combinatorics.clj index 35cca059..5b46c235 100644 --- a/src/clojure/contrib/combinatorics.clj +++ b/src/clojure/contrib/combinatorics.clj @@ -61,7 +61,11 @@ On my own computer, I use versions of all these algorithms that return sequences )
-(ns clojure.contrib.combinatorics)
+(ns
+ #^{:author "Mark Engelberg",
+ :doc "Efficient, functional algorithms for generating lazy
+sequences for common combinatorial functions. (See the source code for a longer description.)"}
+ clojure.contrib.combinatorics)
(defn- index-combinations
[n cnt]
|