Skip to content

Instantly share code, notes, and snippets.

@timsgardner
Created September 17, 2015 08:10
Show Gist options
  • Select an option

  • Save timsgardner/7b37da04863d736fc2cb to your computer and use it in GitHub Desktop.

Select an option

Save timsgardner/7b37da04863d736fc2cb to your computer and use it in GitHub Desktop.
(defmacro swiz [v spec]
(let [spec (name spec)
op (case (count spec)
2 'v2
3 'v3
4 'v4)
vsym (gensym "v_")]
`(let [~vsym ~v]
(~op ~@(map #(list '. vsym (symbol (str %))) spec)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment