Print the JSON encoding of a vl-extint-p to ps.
(vl-jp-extint x &key (ps 'ps)) → ps
Function:
(defun vl-jp-extint-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-extint-p x))) (let ((__function__ 'vl-jp-extint)) (declare (ignorable __function__)) (vl-ps-seq (vl-print "{\"tag\": ") (jp-sym ':vl-extint) (vl-print ", ") (vl-print-str "\"value\": ") (jp-bit (vl-extint->value x)) (vl-println? "}"))))