2014-01-26 00:04:22 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "Don't get lost when creating a map"
|
2013-03-04 23:30:00 +00:00
|
|
|
(= {:a 1 :b 2} (hash-map :a 1 __ __))
|
2010-09-30 12:14:07 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "A value must be supplied for each key"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= {:a 1} (hash-map :a __))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "The size is the number of entries"
|
2010-10-29 15:45:47 +00:00
|
|
|
(= __ (count {:a 1 :b 2}))
|
2010-02-08 04:29:31 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "You can look up the value for a given key"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= __ (get {:a 1 :b 2} :b))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "Maps can be used as functions to do lookups"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= __ ({:a 1 :b 2} :a))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "And so can keywords"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= __ (:a {:a 1 :b 2}))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "But map keys need not be keywords"
|
2014-11-26 22:01:18 +00:00
|
|
|
(= __ ({2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"} 2014))
|
2010-02-08 04:29:31 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "You may not be able to find an entry for a key"
|
2011-02-03 18:26:58 +00:00
|
|
|
(= __ (get {:a 1 :b 2} :c))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "But you can provide your own default"
|
2011-02-03 18:00:03 +00:00
|
|
|
(= __ (get {:a 1 :b 2} :c :key-not-found))
|
2010-02-08 04:29:31 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "You can find out if a key is present"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= __ (contains? {:a nil :b nil} :b))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "Or if it is missing"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= __ (contains? {:a nil :b nil} :c))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "Maps are immutable, but you can create a new and improved version"
|
2014-04-25 19:11:18 +00:00
|
|
|
(= {1 "January" 2 __} (assoc {1 "January"} 2 "February"))
|
2010-02-08 04:29:31 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "You can also create a new version with an entry removed"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= {__ __} (dissoc {1 "January" 2 "February"} 2))
|
|
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "Often you will need to get the keys, but the order is undependable"
|
2010-02-08 04:29:31 +00:00
|
|
|
(= (list __ __ __)
|
2014-11-26 22:01:18 +00:00
|
|
|
(sort (keys { 2014 "Sochi" 2018 "PyeongChang" 2010 "Vancouver"})))
|
2010-02-08 04:29:31 +00:00
|
|
|
|
2016-02-27 02:33:05 +00:00
|
|
|
; "You can get the values in a similar way"
|
2013-09-03 00:12:29 +00:00
|
|
|
(= (list __ __ __)
|
2016-02-27 02:33:05 +00:00
|
|
|
(sort (vals {2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"})))
|