Returns a stream consisting of the elements of this stream from the specified start position to the end. @param start the start position (inclusive) @return the new substream
(final Number start)
| 298 | * @return the new substream |
| 299 | */ |
| 300 | public Stream substream(final Number start) { |
| 301 | return substream(start, Integer.valueOf(Integer.MAX_VALUE)); |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Returns a stream consisting of the elements of this stream from the |