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.
Other relevant functions are documented in the f group.
Shortdoc
;; f
(f-write-bytes (unibyte-string 72 101 108 108 111 32 119 111 114 108 100) "path/to/binary/data")
-> [it depends]
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))