Function: bindat-vector-to-dec

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

Signature

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

Documentation

Format vector VECT in decimal format separated by dots.

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-dec (vect &optional sep)
  "Format vector VECT in decimal format separated by dots.
If optional second arg SEP is a string, use that as separator."
  (bindat-format-vector vect "%d" (if (stringp sep) sep ".")))