Function: map-into

map-into is a byte-compiled function defined in map.el.gz.

Signature

(map-into MAP TYPE)

Documentation

Convert MAP into a map of TYPE.

Implementations

(map (type (head hash-table))) in `map.el'.

Convert MAP into a hash-table. TYPE is a list whose car is `hash-table' and cdr a list of keyword-args forwarded to `make-hash-table'.

Example: (map-into '((1 . 3)) '(hash-table :test eql))

(map (type (eql hash-table))) in `map.el'.

Convert MAP into a hash-table with keys compared with `equal'.

(map (type (eql plist))) in `map.el'.

Convert MAP into a plist.

(map (type (eql alist))) in `map.el'.

Convert MAP into an alist.

(map (type (eql list))) in `map.el'.

Convert MAP into an alist.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric map-into (map type)
  "Convert MAP into a map of TYPE.")