TCL 的键控列表的替代实现无需编译?

发布于 2024-08-18 08:55:36 字数 211 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

舞袖。长 2024-08-25 08:55:36

如果您查看此有关键控列表的 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.

野鹿林 2024-08-25 08:55:36

是的,在 tcl 8.5 中,添加了 dict 命令,它实现了字典存储,例如:

dict set d key1 val1
dict set d key2 val2

dict for {k v} $d {puts "$k = $v"}

yes, in tcl 8.5, the dict command was added which implements a dictionary store, for example:

dict set d key1 val1
dict set d key2 val2

dict for {k v} $d {puts "$k = $v"}
吝吻 2024-08-25 08:55:36

此维基页面本身的末尾找到了解决方案!

Found the solution at the end of this wiki page itself !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文