
leif
2017-3-2 20:15:06
Does template
from syntax/parse/experimental/template have an unquote form like quasisyntax?

pavpanchekha
2017-3-2 21:14:56
What’s the blocking behavior of get-output-string
? The docs are unclear…

samth
2017-3-2 21:15:28
what do you mean by “blocking”?

pavpanchekha
2017-3-2 21:16:20
If I have an open string port that I’m writing to in one thread, are there any cases where get-output-string
will block if called in another thread?

samth
2017-3-2 21:18:21
I don’t think it will ever block permanently

pavpanchekha
2017-3-2 21:18:40
Are there any cases where it could take, say, seconds to return?

samth
2017-3-2 21:18:45
there’s of course no guarantee that you’ll get scheduled right away

samth
2017-3-2 21:18:55
but seconds seems very unlikely

pavpanchekha
2017-3-2 21:19:30
Ok, thanks