Function: icalendar-match-float-value

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

Signature

(icalendar-match-float-value S)

Documentation

Match string S against rx icalendar-float.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;;;; 3.3.7 Float
(ical:define-type ical:float "FLOAT"
   "Type for Float values.

When printed, possibly a sign + or -, followed by a sequence of digits,
and possibly a decimal.  When read, an Elisp float value."
   '(float * *)
   (seq
    (zero-or-one (or ?+ ?-))
    (one-or-more digit)
    (zero-or-one (seq ?. (one-or-more digit))))
   :reader string-to-number
   :printer number-to-string
   :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.3.7")