Variable: vhdl-math-functions

vhdl-math-functions is a variable defined in vhdl-mode.el.gz.

Value

Large value
("arccos"
 "arccosh"
 "arcsin"
 "arcsinh"
 "arctan"
 "arctanh"
 "arg"
 "cbrt"
 "ceil"
 "cmplx"
 "complex_to_polar"
 "conj"
 "cos"
 "cosh"
 "exp"
 "floor"
 "get_principal_value"
 "log"
 "log10"
 "log2"
 "polar_to_complex"
 "realmax"
 "realmin"
 "round"
 "sign"
 "sin"
 "sinh"
 "sqrt"
 "tan"
 "tanh"
 "trunc"
 "uniform")

Documentation

List of Math Packages standardized functions.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defconst vhdl-math-functions
  ;; standard: IEEE Std 1076.2-1996
  '(
    "arccos" "arccosh" "arcsin" "arcsinh" "arctan" "arctanh" "arg"
    "cbrt" "ceil" "cmplx" "complex_to_polar" "conj" "cos" "cosh" "exp"
    "floor" "get_principal_value" "log" "log10" "log2" "polar_to_complex"
    "realmax" "realmin" "round" "sign" "sin" "sinh" "sqrt"
    "tan" "tanh" "trunc" "uniform"
    )
  "List of Math Packages standardized functions.")