Coverage report: /home/ellis/comp/core/lib/q/select.lisp

KindCoveredAll%
expression01 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; select.lisp --- Simple Selection
2
 
3
 ;; Trivial, easily-embedded subscript-based queries.
4
 
5
 ;;; Commentary:
6
 
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.
10
 
11
 ;; - boolean-predicate
12
 ;; - boolean-set
13
 
14
 ;;; Code:
15
 (in-package :q/select)