Function: 5x5-cell

5x5-cell is a byte-compiled function defined in 5x5.el.gz.

Signature

(5x5-cell GRID Y X)

Documentation

Return the value of the cell in GRID at location X,Y.

Source Code

;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-cell (grid y x)
  "Return the value of the cell in GRID at location X,Y."
  (aref (aref grid y) x))