Function: MAP1-N
Documentation
maps numbers from 1 to n
Source
(defun map1-n (fn n) "maps numbers from 1 to n" (mapa-b fn 1 n))
Source Context