lispdoc - results for map

(map result-type function first-sequence &rest more-sequences)
Undocumented
Example:
(defun vector-map (fn vec)
  "useful for me when I am lazy.."
  (map 'vector fn vec))
Mentioned in:
CLtL2 - 14.2. Concatenating, Mapping, and Reducing Sequences
CLtL2 - 20.1. Run-Time Evaluation of Forms
CLtL2 - 4.9. Determining the Type of an Object
CLtL2 - 7.8.4. Mapping
CLtL2 - 7.9. Structure Traversal and Side Effects
CLtL2 - 8. Macros
HyperSpec - Function MAP
PCL - hash table iteration
PCL - mapping
PCL - querying the database
PCL - sequence mapping functions
Successful Lisp - chapter10
Successful Lisp - chapter12
(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