slingshot-clojure 0.10.3-1 source package in Ubuntu

Changelog

slingshot-clojure (0.10.3-1) unstable; urgency=low


  * Initial release. (Closes: #699546)

 -- Wolodja Wentland <email address hidden>  Thu, 23 May 2013 16:52:43 +0000

Upload details

Uploaded by:
Debian Clojure Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Clojure Maintainers
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe misc

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
slingshot-clojure_0.10.3-1.dsc 2.1 KiB 2c93203f4f52fb43240836e1710f65c40a855d401f85308fa1bc935934409dcf
slingshot-clojure_0.10.3.orig.tar.gz 11.2 KiB 47bfd223c9ca983a6f2cb23b925561f0fa7202f9dc14ce5db5428701a124c002
slingshot-clojure_0.10.3-1.debian.tar.gz 6.9 KiB 5da155e71007acb8edab86eb4f86b8f5c511cb7234ad688c0e92808b0eb47d89

No changes file available.

Binary packages built by this source

libslingshot-clojure: Enhanced throw and catch library for Clojure

 Slingshot is a Clojure library providing enhanced throw and catch replacements
 try+ and throw+.
 .
 Each is 100% compatible with Clojure's and Java's native try and throw both in
 source code and at runtime. Each also provides new capabilities intended to
 improve ease of use by leveraging Clojure's features like maps, records, and
 destructuring. Among them:
 .
    * throw+ can throw any Java object, not just those whose class is derived
      from java.lang.Throwable (e.g. Clojure maps or records)
 .
    * catch clauses within try+ can catch any Java object thrown by throw+,
      Clojure's throw, or Java's throw
 .
    * selectors in catch clauses allow matching on class name, key-value
      vectors, predicates and more
 .
    * Information about the context of a throw site is accessible via a hidden
      argument that includes information on, for example, the caught object,
      exception messages and stack traces