Added documentation for macroexpand

This commit is contained in:
Sean B. Palmer 2013-10-11 12:06:22 +01:00
parent 2e60d6b47b
commit 033198a90e

View File

@ -222,6 +222,18 @@ Contrast with :ref:`iterable?-fn`.
.. _neg?-fn:
macroexpand
-----------
Usage: ``(macroexpand form)``
Returns the macro expansion of form.
.. code-block:: clojure
=> (macroexpand '(-> (a b) (x y)))
(u'x' (u'a' u'b') u'y')
neg?
----