Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active May 7, 2017 11:18
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 deque-blog/ed0a873e402b90b454ab1c4f62b2df19 to your computer and use it in GitHub Desktop.
Save deque-blog/ed0a873e402b90b454ab1c4f62b2df19 to your computer and use it in GitHub Desktop.
(defmacro average-m
[coll]
`(constexpr average ~coll))
(walk/macroexpand-all '(average-m [1 2 4 5]))
=> 3 ;; After compilation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment