Function: 5x5-grid-value

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

Signature

(5x5-grid-value GRID)

Documentation

Get the "on-value" for grid GRID.

Source Code

;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-grid-value (grid)
  "Get the \"on-value\" for grid GRID."
  (cl-loop for y from 0 to (1- 5x5-grid-size)
           sum (5x5-row-value (aref grid y))))