Skip to content

Instantly share code, notes, and snippets.

@arohner
Created August 10, 2011 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arohner/1138051 to your computer and use it in GitHub Desktop.
Save arohner/1138051 to your computer and use it in GitHub Desktop.
noir coercions
(defmulti coerce (fn [tag val] tag)
(defmethod coerce :int [tag val]
(if (string? val)
(Integer/parseInt val)
val))
(defpage "/foo/:id" {^:int id :id}
...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment