You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
369 B

3 years ago
;;;; search.lisp
(in-package #:cl-bible.search)
3 years ago
(defun find-in-bible (bible phrase)
(remove-if-not (lambda (verse) (search phrase (text verse))) bible))
3 years ago
(defun find-book (bible book)
(remove-if-not (lambda (verse) (search book (bname verse))) bible))
3 years ago
(defun find-chapter (book chapter)
(remove-if-not (lambda (verse) (string= chapter (chapter verse))) book))