Function: math-C-parse-bess
math-C-parse-bess is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-C-parse-bess F VAL)
Documentation
Parse C's j0, j1, y0, y1 functions.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-C-parse-bess (_f val)
"Parse C's j0, j1, y0, y1 functions."
(let ((args (math-read-expr-list)))
(math-read-token)
(append
(cond ((eq val 'j0) '(calcFunc-besJ 0))
((eq val 'j1) '(calcFunc-besJ 1))
((eq val 'y0) '(calcFunc-besY 0))
((eq val 'y1) '(calcFunc-besY 1)))
args)))