Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to build an XML structure using the internal data types from BaseX from Clojure.

(defn basex-elem [token-name dict]
  (let [elem (org.basex.query.item.FElem.
                (org.basex.query.item.QNm. token-name))]
    (for [[k v] dict]
      (do
        (println "THIS IS REACHED")
        (let [k-name (org.basex.query.item.QNm. (.getName k))
              k-attr (org.basex.query.item.FAttr.
                        k-name 
                        org.basex.util.Token/token v))]
          (.add elem k-attr))))
    elem))

When using this to cry to create an element, "THIS IS REACHED" is never printed:

(def test-elem (basex-elem "element-name" {:key1 "value1", :key2 "value2"}))
; => #'user/test-elem 

And thus the value comes back without any attributes:

test-elem
; => #<FElem <element-name/>>

But adding attributes works otherwise.

(.add test-elem
      (org.basex.query.item.FAttr.
        (org.basex.query.item.QNm. "foo")
        (org.basex.util.Token/token "bar")))
; => #<FElem <element-name foo="bar"/>>

Thus, presumably I'm doing something wrong with the loop. Any pointers?

share|improve this question

1 Answer

up vote 6 down vote accepted

for is not a loop construct in clojure, rather it's a list comprehension and produces a lazy sequence.

Use doseq instead when side effects are intended.

share|improve this answer
"produces a lazy sequence"... right there in the docs (clojuredocs.org/clojure_core/clojure.core/for), and me not seeing it. Thanks! – Charles Duffy Apr 12 '12 at 23:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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