I have a sequence of values that I get from somewhere else, in a known order. I also have one separate value. Both of these I want to put into a struct. I.e.

(defstruct location :name :id :type :visited)

Now I have a list

(list "Name" "Id" "Type")

that is the result of a regexp.

Then I want to put a boolean in :visited; yielding a struct that looks like this:

{:name "Name" :id "Id" :type "Type" :visited true}

How do I do this? I tried various combinations of apply and struct-map. I got as far as:

(apply struct-map location (zipmap [:visited :name :id :type] (cons true (rest match))))

but that may be the wrong way to go about it altogether.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

How about:

(def l (list "Name" "Id" "Type"))
(defstruct location :name :id :type :visited)
(assoc
   (apply struct location l)
   :visited true)
link|improve this answer
Yes...so easy :) – Kurt Schelfthout Oct 1 '10 at 20:53
feedback

You should use a record not a struct if you are in 1.2.

(defrecord location [name id type visited])

(defn getLoc [[name type id] visited] (location. name id type visited))

(getLoc (list "name" "type" "id") true)
#:user.location{:name "name", :id "id", :type "type", :visited true}
link|improve this answer
+1 for the tip about the records. I don't like having to write a special function just for destructuring this particular case. Thanks! – Kurt Schelfthout Oct 1 '10 at 20:52
You don't have to. I just its better if you get the data as a list. – nickik Oct 2 '10 at 11:20
feedback

Your version looks OK. One small shortcut via into:

user> (let [match (list "Name" "Id" "Type")]
        (into {:visited true} 
              (zipmap [:name :id :type] match)))
{:visited true, :type "Type", :id "Id", :name "Name"}

merge would also have worked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.