Function: icalendar-match-binary-value

icalendar-match-binary-value is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-binary-value S)

Documentation

Match string S against rx icalendar-binary.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:binary "BINARY"
   "Type for Binary values.

The parsed and printed representations are the same: a string of characters
representing base64-encoded data."
   '(and string (satisfies ical:match-binary-value))
   (seq (zero-or-more (= 4 ical:base64char))
        (zero-or-one (or (seq (= 2 ical:base64char) "==")
                         (seq (= 3 ical:base64char) "="))))
   :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.3.1")