Function: closql--where-equal

closql--where-equal is a byte-compiled function defined in closql.el.

Signature

(closql--where-equal VALUE OFFSET)

Source Code

;; Defined in ~/.emacs.d/elpa/closql-20260101.1828/closql.el
(defun closql--where-equal (value offset)
  (vector
   (cons 'and
         (mapcar (lambda (v)
                   (if v
                       (list '=
                             (intern (format "$i%i" (cl-incf offset)))
                             (intern (format "$s%i" (cl-incf offset))))
                     (list 'isnull
                           (intern (format "$i%i" (1- (cl-incf offset 2)))))))
                 value))))