cl-openstack-client/openstack.lisp
Russell Sim 2b75f1821d Initial partial keystone API implementation
Change-Id: I25b216936cd902bc9cf05dee517859fd1756f751
2013-10-17 20:22:16 +11:00

12 lines
282 B
Common Lisp

(defpackage cl-openstack-client
(:use cl)
(:export assoc*))
(in-package :cl-openstack-client)
(defun assoc* (item alist &rest rest &key key test test-not)
"Return the CDR of the ASSOC result."
(declare (ignore key test test-not))
(cdr (apply #'assoc item alist rest)))