Skip to content

Latest commit

 

History

History
116 lines (68 loc) · 3.31 KB

API.md

File metadata and controls

116 lines (68 loc) · 3.31 KB

Table of contents


(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)