(defn is-query-var? "Is this a query variable: e.g. a symbol prefixed with ??" [sym] (when (symbol? sym) (let [name (name sym)] (and (= \? (first name)) (= \? (fnext name))))))
Comments top
No comments for is-query-var?. Log in to add a comment.