dsann.let-map
assoc-syms
- like sym-map but assocs to supplied map.let-assoc
- Like let-map, but assocs into the supplied map.let-map
- Takes a list of name-value pairs and returns a map: (let-map a 1 ...) => {:a 1 ...} For examples, see: dsann.let-map-test.sym-map
- Creates a map from a seq of symbols.
dsann.let-map-test
(assoc-syms m & syms)
Macro.
like sym-map but assocs to supplied map. For examples, see: dsann.let-map-test
(let-assoc m & args)
Macro.
Like let-map, but assocs into the supplied map. For examples, see: dsann.let-map-test
(let-map & args)
Macro.
Takes a list of name-value pairs and returns a map: (let-map a 1 ...) => {:a 1 ...} For examples, see: dsann.let-map-test
(sym-map & syms)
Macro.
Creates a map from a seq of symbols. Symbol names are converted to keywords as the key to the value it holds For examples, see: dsann.let-map-test
(test-assoc-syms)
(test-let-assoc)
(test-let-map)
(test-sym-map)