可迭代的缺点
我找不到缺点的方法。这样的方法会将单个项目添加到 Iterable 中。相反,我必须使用
Iterables.concat(list, Collections.singletonList(item))
?下面的内容就很好了。
Iterables.cons(list, item)
I cannot find a method cons. Such a method would add a single item to an Iterable. Instead, do I have to use
Iterables.concat(list, Collections.singletonList(item))
? The following would be quite nice.
Iterables.cons(list, item)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,编写一个方法
cons(Iterable, T)
来对concat
进行稍微复杂的调用。So, write a method
cons(Iterable<T>, T)
that makes the slightly-more complicated call toconcat
.