Function: 5x5-solve-rotate-right
5x5-solve-rotate-right is an interactive and byte-compiled function
defined in 5x5.el.gz.
Signature
(5x5-solve-rotate-right &optional N)
Documentation
Rotate right by N the list of solutions in 5x5-solver-output.
If N is not supplied, rotate by 1. Similar to function
5x5-solve-rotate-left except that rotation is right instead of
lest.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-solve-rotate-right (&optional n)
"Rotate right by N the list of solutions in 5x5-solver-output.
If N is not supplied, rotate by 1. Similar to function
`5x5-solve-rotate-left' except that rotation is right instead of
lest."
(interactive "P" 5x5-mode)
(setq n
(if (integerp n) (- n)
-1))
(5x5-solve-rotate-left n))