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