Lookup Tables: Alists and Plists Lookup Tables: Alists and Plists In addition to trees and sets, you can build tables that map keys to values out of cons cells. Two flavors of ...
Clojure Design Data focused design - Maps & Vectors Hint::Basic design principle Extensibility via Macros Special forms - the building blocks of Clojure Clojure Design Cl...
Atom Proton Install Atom.io Standalone Install Alternative install via Package Manager Running Atom Danger::Leiningen in GitBash does not work with Atom Install Proton Exampl...
Vectors Vectors Vectors are Common Lisp’s basic integer-indexed collection, and they come in two flavors. Fixed-size vectors are a lot like arrays in a language such as Java: a...
Hash Tables Hash Tables The other general-purpose collection provided by Common Lisp is the hash table. Where vectors provide an integer-indexed data structure, hash tables all...