Function: ses-make-cell

ses-make-cell is a byte-compiled function defined in ses.el.gz.

Signature

(ses-make-cell &optional SYMBOL FORMULA PRINTER REFERENCES)

Documentation

Constructor for objects of type ses-cell.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(cl-defstruct (ses-cell
	       (:constructor nil)
	       (:constructor ses-make-cell
		(&optional symbol formula printer references))
	       (:copier nil)
	       ;; This is treated as an 4-elem array in various places.
	       ;; Mostly in ses-set-cell.
	       (:type vector)		;Not named.
	       (:conc-name ses-cell--))
  symbol formula printer references properties)