Returns a stream consisting of the first count elements of this stream. @param count the number of elements to limit to @return the new limited stream
(final Number count)
| 286 | * @return the new limited stream |
| 287 | */ |
| 288 | public Stream limit(final Number count) { |
| 289 | return substream(Integer.valueOf(0), count); |
| 290 | } |
| 291 | |
| 292 | |
| 293 | /** |