Function: bindat-vector-to-hex

bindat-vector-to-hex is a byte-compiled function defined in bindat.el.gz.

Signature

(bindat-vector-to-hex VECT &optional SEP)

Documentation

Format vector VECT in hex format separated by colons.

If optional second arg SEP is a string, use that as separator.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bindat.el.gz
(defun bindat-vector-to-hex (vect &optional sep)
  "Format vector VECT in hex format separated by colons.
If optional second arg SEP is a string, use that as separator."
  (bindat-format-vector vect "%02x" (if (stringp sep) sep ":")))