interface java.lang.AutoCloseableinterface java.util.stream.BaseStream<Integer, IntStream>
IntStream.Builder
default IntConsumer.andThen(after) → IntConsumer: Returns a composed IntConsumer that performs, in sequence, this operation followed by the after operation.IntConsumer afterdefault IntStream.Builder.add(t) → IntStream.Builder: stream이 빌드 될 요소를 하나 추가한다.int tIntStream.Builder.build() → IntStream: 스트림을 빌드한다. Builds the stream, transitioning this builder to the built state.IntStream.Builder.accept(t): stream이 빌드 될 요소를 하나 추가한다.int tstatic IntStream.empty() → IntStreamstatic IntStream.concat(a, b) → IntStreamIntStream aIntStream bstatic IntStream.generate(s) → IntStreamIntSupplier sstatic IntStream.iterate(seed, f) → IntStreamint seedIntUnaryOperator fstatic IntStream.of(t) → IntStream static IntStream.of(values) → IntStreamint tint… valuesint startInclusiveint endExclusiveint startInclusiveint endExclusive