TCL 的键控列表的替代实现无需编译?
我需要在 TCL 中使用键控列表,但可以选择仅将 tcl 代码复制到设备。
默认方法是使用 TclX,但这需要编译。
是否有任何可作为“独立”库(即纯 tcl)使用的键控列表函数(keylset、keylget)的实现?
I need to use keyed lists with TCL, but have the option of only copying tcl code to the device.
The default method is to use TclX, but this requires compilation.
Is there any implementation of keyed list functions (keylset, keylget) which is available as a "standalone" library (i.e. pure tcl)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您查看此有关键控列表的 wiki 页面,其中有人编写了纯 tcl 版本基本的键控列表功能。我没有深入阅读以了解它们是否依赖于 dict。如果是这样,wiki 上的其他地方就有 dict 的纯 tcl 实现。
If you take a look at this wiki page regarding keyed lists, where someone has written a pure tcl version of basic keyed list functionality. I didn't read in depth to see if they depended on dict or not. If so, there is a pure tcl implemention of dict elsewhere on the wiki.
是的,在 tcl 8.5 中,添加了 dict 命令,它实现了字典存储,例如:
yes, in tcl 8.5, the
dict
command was added which implements a dictionary store, for example:在此维基页面本身的末尾找到了解决方案!
Found the solution at the end of this wiki page itself !