What is the best way to get the first nil value for several possible keys on the map.
Example:
(get-first-matching {:fum 4 :bar 41 :baz 45} [:foo :bar :baz]) ;=> 41
some .
user=> (some {:fum 4 :bar 41 :baz 45} [:foo :bar :baz]) 41