我想要一个可以填充此地图内容的函数:
{:1 "first" :2 "second" :3 "third" :4 "fourth" ... :100 "one-hundredth" ...}
所以我可以做类似的事情
(println "This is the " (:3 {... :3 "third" ...}) " item in the sequence")
> This is the third item in the sequence
是否存在执行此操作的现有 Clojure 库?
(如果有更好的方式来描述这种功能 - 请告诉我)