为什么Scala stdlib 中没有ARM?
为什么Scala标准库中没有提供ARM(如Clojure的with-open
)?
Why is there no ARM (like Clojure's with-open
) provided in the Scala standard library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短回答
因为还没有人添加!
更长的答案
人们已经提出了许多关于更大更好的 I/O 库的建议,但事实证明最好使用的 API 是有争议的。
特别是,逐行读取文件时处理换行符的确切方法是一个敏感话题。 (例如,它们应该被剥离,还是按原样传递?如果被剥离,是否应该跳过空行?)
这往往会鼓励支持不同需求的第三方库。
说了这么多...您可能想查看 github 上的 jsuereth 产品: https://github .com/jsuereth/scala-arm/wiki
Short answer
Because nobody's added one yet!
Longer answer
Many proposals for a bigger better I/O library have been put forward, but the best API to use has proved controversial.
In particular, the exact way to handle newlines when reading a file line-by-line is a sensitive subject. (e.g. should they be stripped, or passed through as-is? If stripped, should empty lines be skipped over?)
This tends to encourage third-party libraries favouring different needs.
Having said all that... You may want to check out jsuereth's offering on github: https://github.com/jsuereth/scala-arm/wiki