I have a vector of strings (although could be anything really), and I want to create a new vector of map entries, with the key being some keyword.
For example, given:
["foo" "bar" "baz"]
I want to get
[{:message "foo"} {:message "bar"} {:message "baz"}]
What is the most idiomatic way of applying this transformation?
Thanks!