/**@class java.util.stream.Node.OfInt implements java.util.stream.Node.OfPrimitive Specialized {@code Node} for int elements */ var OfInt = { /**{@inheritDoc} @param {Object {java.util.function.Consumer}} consumer a {@code Consumer} that is to be invoked with each element in this {@code Node}. If this is an {@code IntConsumer}, it is cast to {@code IntConsumer} so the elements may be processed without boxing. */ forEach : function( ) {}, /**{@inheritDoc} @implSpec the default implementation invokes {@link #asPrimitiveArray()} to obtain an int[] array then and copies the elements from that int[] array into the boxed Integer[] array. This is not efficient and it is recommended to invoke {@link #copyInto(Object, int)}. */ copyInto : function( ) {}, /** */ truncate : function( ) {}, /** */ newArray : function( ) {}, /**{@inheritDoc} @implSpec The default in {@code Node.OfInt} returns {@code StreamShape.INT_VALUE} */ getShape : function( ) {}, };