Improve the testing infrastructure, rename find-all
author |
Steve Losh <steve@stevelosh.com> |
date |
Fri, 18 Mar 2016 12:09:36 +0000 |
parents |
5bb73a585f2c |
children |
2daf5fb2fe92 |
(defpackage #:bones
(:use #:cl)
(:export #:hello))
(defpackage #:bones.paip
(:use #:cl #:defstar #:bones.utils)
(:export
;; Unification, constants
#:unify
#:fail #:no-bindings
#:*check-occurs*
;; Database management
#:clear-db
#:fact
#:rule
;; Lisp data structures as results
#:return-one
#:return-all
;; Interactive queries
#:query
#:query-one
#:query-all
))