Hi folks!  3 new libs in contrib for your enjoyment.

clojure.contrib.find-namespaces:
Functions to search files in CLASSPATH, directory trees, or JAR files
for Clojure namespace declarations, without loading them.  This means
you can do things like "load all the available namespaces that start
with my.cool.library".  Example:

   (use 'clojure.contrib.find-namespaces)

   (filter #(.startsWith (name %) "clojure.contrib.test-clojure")
(find-namespaces-on-classpath))
   ;; => (clojure.contrib.test-clojure clojure.contrib.test-
clojure.agents clojure.contrib.test-clojure.atoms clojure.contrib.test-
clojure.clojure-main ...



clojure.contrib.classpath:
Small utilities for examining the Java CLASSPATH.

clojure.contrib.jar:
Small utilities for examining JAR files.

-Stuart Sierra
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to