Giter VIP home page Giter VIP logo

Comments (5)

jasonm23 avatar jasonm23 commented on July 30, 2024 1

@alphapapa there's a couple of pull requests already open.

from anaphora.

jasonm23 avatar jasonm23 commented on July 30, 2024 1

@alphapapa Wiki now has these docs too.

from anaphora.

jasonm23 avatar jasonm23 commented on July 30, 2024

The test suite provides a complete set of examples. https://github.com/rolandwalker/anaphora/blob/master/ert-tests/anaphora-test.el

from anaphora.

jasonm23 avatar jasonm23 commented on July 30, 2024

anaphoric-if aka. aif

Like if, but the result of evaluating COND is bound to it.

The variable it is available within THEN and ELSE.

COND, THEN, and ELSE are otherwise as documented for if.

anaphoric-prog1 aka. aprog1

Like prog1, but the result of evaluating FIRST is bound to it.

The variable it is available within BODY.

FIRST and BODY are otherwise as documented for prog1.

The final return value of aprog1 is it (ie. FIRST).

anaphoric-prog2 aka. aprog2

Like prog2, but the result of evaluating FORM2 is bound to it.

The variable it is available within BODY.

FORM1, FORM2, and BODY are otherwise as documented for prog2.

The final return value of aprog2 is it (ie. FORM2).

anaphoric-when aka. awhen

Like when, but the result of evaluating COND is bound to it.

The variable it is available within BODY.

COND and BODY are otherwise as documented for when.

anaphoric-while aka. awhile

Like while, but the result of evaluating TEST is bound to it.

The variable it is available within BODY.

TEST and BODY are otherwise as documented for while.

anaphoric-and aka. aand

Like and, but the result of the previous condition is bound to it.

The variable it is available within all CONDITIONS after the
initial one.

CONDITIONS are otherwise as documented for and.

Note that some implementations of this macro bind only the first
condition to it, rather than each successive condition.

anaphoric-cond aka. acond

Like cond, but the result of each condition is bound to it.

The variable it is available within the remainder of each of CLAUSES.

CLAUSES are otherwise as documented for cond.

anaphoric-lambda aka. alambda

Like lambda, but the function may refer to itself as self.

ARGS and BODY are otherwise as documented for lambda.

anaphoric-block aka. ablock

Like block, but the result of the previous expression is bound to it.

The variable it is available within all expressions of BODY
except the initial one.

NAME and BODY are otherwise as documented for block.

anaphoric-case aka. acase

Like case, but the result of evaluating EXPR is bound to it.

The variable it is available within CLAUSES.

EXPR and CLAUSES are otherwise as documented for case.

anaphoric-ecase aka. aecase

Like ecase, but the result of evaluating EXPR is bound to it.

The variable it is available within CLAUSES.

EXPR and CLAUSES are otherwise as documented for ecase.

anaphoric-typecase aka. atypecase

Like typecase, but the result of evaluating EXPR is bound to it.

The variable it is available within CLAUSES.

EXPR and CLAUSES are otherwise as documented for typecase.

anaphoric-etypecase aka. aetypecase

Like etypecase, but result of evaluating EXPR is bound to it.

The variable it is available within CLAUSES.

EXPR and CLAUSES are otherwise as documented for etypecase.

anaphoric-let aka. alet

Like let, but the content of VARLIST is bound to it.

VARLIST as it appears in it is not evaluated. The variable it
is available within BODY.

VARLIST and BODY are otherwise as documented for let.

anaphoric-+ aka. a+

Like +, but the result of evaluating the previous expression is bound to it.

The variable it is available within all expressions after the
initial one.

NUMBERS-OR-MARKERS are otherwise as documented for +.

anaphoric-- aka. a-

Like -, but the result of evaluating the previous expression is bound to it.

The variable it is available within all expressions after the
initial one.

NUMBER-OR-MARKER and NUMBERS-OR-MARKERS are otherwise as
documented for -.

anaphoric-* aka. a*

Like *, but the result of evaluating the previous expression is bound to it.

The variable it is available within all expressions after the
initial one.

NUMBERS-OR-MARKERS are otherwise as documented for *.

anaphoric-/ aka. a/

Like /, but the result of evaluating the previous divisor is bound to it.

The variable it is available within all expressions after the
first divisor.

DIVIDEND, DIVISOR, and DIVISORS are otherwise as documented for /.

anaphoric-set

EXPERIMENTAL

Like set, except that the value of SYMBOL is bound to it.

The variable it is available within VALUE.

SYMBOL and VALUE are otherwise as documented for set.

Note that if this macro followed traditional naming for
anaphoric expressions, it would conflict with the existing
(quite different) function aset.

anaphoric-setq

EXPERIMENTAL

Like setq, except that the value of SYM is bound to it.

The variable it is available within each VAL.

ARGS in the form [SYM VAL] ... are otherwise as documented for setq.

No alias asetq is provided, because it would be easily mistaken
for the pre-existing aset, and because anaphoric-setq is not
likely to find frequent use.

from anaphora.

alphapapa avatar alphapapa commented on July 30, 2024

It would be great if these were in the documentation. :)

from anaphora.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.