Function: MAP0-N

Documentation

maps numbers from 0 to n

Source

(defun map0-n (fn n)
  "maps numbers from 0 to n"
  (mapa-b fn 0 n))
Source Context