Function: calendar-chinese-sexagesimal-name

calendar-chinese-sexagesimal-name is a byte-compiled function defined in cal-china.el.gz.

Signature

(calendar-chinese-sexagesimal-name N)

Documentation

The N-th name of the Chinese sexagesimal cycle.

N congruent to 1 gives the first name, N congruent to 2 gives the second name,
..., N congruent to 60 gives the sixtieth name.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
;;; End of user options.


(defun calendar-chinese-sexagesimal-name (n)
  "The N-th name of the Chinese sexagesimal cycle.
N congruent to 1 gives the first name, N congruent to 2 gives the second name,
..., N congruent to 60 gives the sixtieth name."
  (format "%s-%s"
          (aref calendar-chinese-celestial-stem (% (1- n) 10))
          (aref calendar-chinese-terrestrial-branch (% (1- n) 12))))