Coverage report: /home/ellis/.stash/quicklisp/dists/quicklisp/software/alexandria-20241012-git/alexandria-2/sequences.lisp

KindCoveredAll%
expression09 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 (in-package :alexandria-2)
2
 
3
 
4
 (defun subseq* (sequence start &optional end)
5
   "Like SUBSEQ, but limits END to the length."
6
   (subseq sequence start
7
           (if end
8
               (min end (length sequence)))))
9