Skip to content

Instantly share code, notes, and snippets.

@bonega
Created January 11, 2019 17:07
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 bonega/17f8d77e34fcfcb66951effb10f6407a to your computer and use it in GitHub Desktop.
Save bonega/17f8d77e34fcfcb66951effb10f6407a to your computer and use it in GitHub Desktop.
(defmulti transform type)
(defmethod transform java.lang.Long [v]
(* v v))
(defmethod transform clojure.lang.PersistentVector [v]
(map inc v))
(map transform [1 2 [3 4 5])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment