Is it possible to add keywords to with-open-file() at runtime,ie. sometimes I'ld want :ifexists :supersede and sometimes not.
Right now I got
-a
Right now I got
(defun serialize-hmm-model-to-file (file &rest kwords &key &allow-other-keys)
(let ((s (apply #'open (append (list file :direction :output) kwords))))
(serialize-hmm-model s)
(close s)))
But it feels like to much of a mouthfull really.-a