mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
9 lines
263 B
HTML
9 lines
263 B
HTML
<html>
|
|
<body>
|
|
Reports non-short-circuit operations consuming an infinite stream. Such operations can be completed only by throwing an exception.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
Stream.iterate(0, i -> i + 1).collect(Collectors.toList())
|
|
</code></pre>
|
|
</body>
|
|
</html> |