Coverage report: /home/ellis/comp/core/lib/q/select.lisp
Kind | Covered | All | % |
expression | 0 | 1 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; select.lisp --- Simple Selection
3
;; Trivial, easily-embedded subscript-based queries.
7
;; The idea here is to provide the most basic, easy to slap on query api as
8
;; possible. These can be added to any lisp collection or object to give it
9
;; queryable accessors which can be combined according to a QUERY-MODEL.
11
;; - boolean-predicate
15
(in-package :q/select)