Racket 中的 gensym
我知道 gensym 可以生成符号,但似乎有一个带有基数的全局计数器,它可以非常大,例如, (define s (gensym 's))
s 可以结束与s12345
一起。 我想知道是否有办法重置计数器,其中生成的数字可以很小?例如s14
?
I know gensym can generate symbols, but it seems that there is a global counter there with the base, which can be very large, for example, (define s (gensym 's))
the s can end up with s12345
.
I am wondering whether there is a way to reset the counter, where the number generated can be small?like s14
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法做到这一点,否则就会在 文档。您只能为新符号提供“基础”。如果您确实需要一个小计数器,那么可以使用
字符串->不可读-符号
,例如:There's no way to do that, otherwise it would have been mentioned in the docs. You can only provide a "base" for the new symbol. If you really need a small counter, then it's easy to make up your own
gensym
usingstring->unreadable-symbol
, for example: