次のようなデータ構造があります。
(def conf
{ :devices [{:alias "OSC Sender",
:name "OSC Sender",
:ins [{:name "xpos", :type :int, :mutable true}]},
{:alias "const2", :name "const",
:outs [{:name "out", :type :int}]}],
:connections {"const2.out" "OSC Sender.xpos"},
:layout [{:alias "const2",
:x 72.12447405329594,
:y 99.88499298737729},
{:alias "tick",
:x 82.5732819074334,
:y 133.91374474053296},
{:alias "OSC Sender",
:x 185.17741935483872,
:y 113.90322580645162}]})
:devices
マップを:layout
キー (特に:alias
) で結合して、レイアウト情報でデバイスを充実させたいと考えています。
今、私は次の解決策を石畳にしました:
(map (partial reduce merge) (vals (group-by :alias (concat (:devices conf) (:layout conf)))))
それは慣用的な結合ですか、それとも他の何かが望ましいですか?
乾杯