Harman Patil (Editor)

Anaphoric macro

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

An anaphoric macro is a type of programming macro that deliberately captures some form supplied to the macro which may be referred to by an anaphor (an expression referring to another). Anaphoric macros first appeared in Paul Graham's On Lisp and their name is a reference to linguistic anaphora—the use of words as a substitute for preceding words.

Contents

Examples

The loop macro in ANSI Common Lisp is anaphoric in that it binds it to the result of the test expression in a clause.

Here is an example that sums the value of non-nil elements, where it refers to the values of elements that do not equal nil:

Here it is bound to the output of (and (> number 3) number) when true, collecting numbers larger than 3:

Defining anaphoric macros

One example is an anaphoric version of the if-then-else construct, which introduces an anaphor it, bound to the result of the test clause:

Another example is an anaphoric version of the λ-function, which binds the function itself to the anaphor self, allowing it to recur:

References

Anaphoric macro Wikipedia