src/utils.lisp @ 7627f8976a3e

"Pre-inline" the structure argument register assignments

A little more complexity when parsing saves a big headache later.
author Steve Losh <steve@stevelosh.com>
date Thu, 14 Apr 2016 14:00:45 +0000
parents 9376531b5089
children 2f0b5c92febe
(in-package #:bones.utils)

(defmacro push-if-new (thing place
                             &environment env
                             &key key (test '#'eql))
  "Push `thing` into the list at `place` if it's not already there.

  Returns whether `thing` was actually pushed.  This function is basically
  `pushnew` except for the return value.

  "
  (multiple-value-bind (temps exprs stores store-expr access-expr)
      (get-setf-expansion place env)
    (declare (ignore stores store-expr))
    (with-gensyms (current result)
      `(let* (,@(zip temps exprs)
              (,current ,access-expr)
              (,result (pushnew ,thing ,place :key ,key :test ,test)))
        (not (eql ,current ,result))))))