Function: strokes-xpm-encode-length-as-string

strokes-xpm-encode-length-as-string is a byte-compiled function defined in strokes.el.gz.

Signature

(strokes-xpm-encode-length-as-string LENGTH)

Documentation

Given some LENGTH in [0,62) do a fast lookup of its encoding.

Source Code

;; Defined in /usr/src/emacs/lisp/strokes.el.gz
(defsubst strokes-xpm-encode-length-as-string (length)
  "Given some LENGTH in [0,62) do a fast lookup of its encoding."
  (aref strokes-base64-chars length))