Function: f-write-bytes
f-write-bytes is a byte-compiled function defined in f.el.
Signature
(f-write-bytes DATA PATH)
Documentation
Write binary DATA to PATH.
DATA is a unibyte string. PATH is a file name to write to.
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-write-bytes (data path)
"Write binary DATA to PATH.
DATA is a unibyte string. PATH is a file name to write to."
(f--write-bytes data path nil))