How can I make sure that a logging function won't try to realize an 
infinite lazy seq that could be anywhere in the arguments passed to the 
logging function?

Is there some way to guarantee that lazy seqs won't be realized when 
converting to a string?

I know I can bind *print-length*, but I don't want to constrain every 
collection.

And I know that lazy seqs aren't always realized, but that doesn't seem to 
help if they are infinite:

user=> (str (map inc (range 10)))
"clojure.lang.LazySeq@c5d38b66"

user=> (str (map inc (range)))
<never ends>

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/baafafb8-7038-4d70-ac64-f885ef466dben%40googlegroups.com.

Reply via email to