Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
inconvergent committed May 21, 2024
1 parent 431f918 commit 80e5ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qry-operators.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
(loop with ,kres = (new$) for ,i from 0
for ,itr being the hash-values of ,par using (hash-key ,k)
do (██∈ (:par ,par :cnt ,i :itr ,itr :key ,k)
(setf (gethash ,k ,kres)
,expr))
(setf (gethash ,k ,kres) ,expr))
finally (return ,kres)))
(map-do-vec () ,(opstr d #'car)
(loop with ,vres = (mav) with ,par = (vec! ,par) for ,i from 0
Expand Down Expand Up @@ -283,7 +282,8 @@
(t (error "lqn: unexpected clause: ~a~%in: ~a." d q)))))
`(λ (,dat ,fn ,fi)
(██q∈ (,dat ,fn ,fi)
,(rec `((:dat . ,dat) (:qblk . ,qblk) ,@conf*) q))))))
(block ,qblk ; TODO: this is not in use.
,(rec `((:dat . ,dat) (:qblk . ,qblk) ,@conf*) q)))))))

(defun qry/show (q cq)
(prtcomp (format t "
Expand Down

0 comments on commit 80e5ee3

Please sign in to comment.