我有以下数据结构:
{:file #<File /foo.bar>, :resolution {:width 1280, :height 1024}}
我想编写一个将:resolution
键解构为width
符号height
的函数。就像是
(defn to-directory-name [{{:keys [width height]}} wallpaper]
(str width "x" height))
解构可能会发生类似的事情吗?
谢谢。
我有以下数据结构:
{:file #<File /foo.bar>, :resolution {:width 1280, :height 1024}}
我想编写一个将:resolution
键解构为width
符号height
的函数。就像是
(defn to-directory-name [{{:keys [width height]}} wallpaper]
(str width "x" height))
解构可能会发生类似的事情吗?
谢谢。