如何在 Io 中映射字符串中的字符?
当我尝试映射字符串时,我得到:
Exception: Sequence does not respond to 'map'
显然,Io 没有为序列实现 map
方法。那么如何将字符串序列转换为字符列表呢?
When I try to map over a string, I get:
Exception: Sequence does not respond to 'map'
Apparently, Io does not implement a map
method for sequences. So how can I convert a string sequence into a list of characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Io 目前没有 Sequence asList 方法,但可以轻松添加。
输出:
Io doesn't currently have a Sequence asList method, but one can easily be added.
Output: