Clojure - 重命名Map键值



将当前 HashMap 中的键重命名为新定义的键。

语法

以下是语法。

(rename-keys hmap keys)

参数 − ‘hmap’ 是哈希键值对的Map。‘keys’ 是需要替换到Map中的新键列表。

返回值 − 返回一个具有新键列表的Map。

示例

以下是 Clojure 中 rename-keys 的示例。

(ns clojure.examples.example
   (:require [clojure.set :as set])
   (:gen-class))
(defn example []
   (def demokeys (hash-map "z" 1 "b" 2 "a" 3))
   (def demonew (set/rename-keys demokeys {"z" "newz" "b" "newb" "a" "newa"}))
   (println demonew))
(example)

输出

以上代码产生以下输出。

{newa 3, newb 2, newz 1}
clojure_maps.htm
广告