可迭代的缺点

发布于 2024-11-03 00:34:49 字数 206 浏览 0 评论 0原文

我找不到缺点的方法。这样的方法会将单个项目添加到 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 技术交流群。

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

发布评论

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

评论(1

水波映月 2024-11-10 00:34:49

因此,编写一个方法 cons(Iterable, T) 来对 concat 进行稍微复杂的调用。

So, write a method cons(Iterable<T>, T) that makes the slightly-more complicated call to concat.

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