lispdoc - results for map-iota |
(alexandria.0.dev:map-iota function n &key (start 0) (step 1)) | Function: Calls FUNCTION with N numbers, starting from START (with numeric contagion from STEP applied), each consequtive number being the sum of the previous one and STEP. START defaults to 0 and STEP to 1. Returns N. Examples: (map-iota #'print 3 :start 1 :step 1.0) => 3 ;;; 1.0 ;;; 2.0 ;;; 3.0
|
(map-into result-sequence function &rest sequences) | Undocumented
|
Example:(defun xform (fn seq) (map-into seq fn seq)) | Mentioned in: CLtL2 - 14.2. Concatenating, Mapping, and Reducing Sequences HyperSpec - Function MAP-INTO PCL - sequence mapping functions Successful Lisp - chapter12 |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |