2016년 11월 20일 일요일

[clojure-docs]assoc



assoc

(assoc {} :key1 "value" :key2 "another value")
{:key2 "another value", :key1 "value"}
딱 보면 알듯이 {}안에 다 넣는 것이다.
(assoc nil :key1 4)
{:key1 4}
(assoc {} nil nil)
{nil nil}

댓글 없음:

댓글 쓰기