chickadee » anaphora » aand

(aand arg ...)syntax

Anaphoric version of and.

When sequentially evaluating the arguments arg ..., the anaphor it will be bound to the value of the previous argument.

(let ((lst '(1 2 3)))
  (aand lst (cdr it) (cdr it)))