Function: f-unibyte-string-p

f-unibyte-string-p is a byte-compiled function defined in f.el.

Signature

(f-unibyte-string-p S)

Documentation

Determine whether S is a unibyte string.

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-unibyte-string-p (s)
  "Determine whether S is a unibyte string."
  (not (multibyte-string-p s)))