Home | History | Annotate | Download | only in stream

Lines Matching defs:copyInto

40  * {@link #asArray}, or {@link #copyInto} methods.  A {@code Node} may have zero
164 void copyInto(T[] array, int offset);
260 * {@link #count()} and then invokes {@link #copyInto(T[], int)} with
272 copyInto(boxed, 0);
308 void copyInto(T_ARR array, int offset);
342 * is recommended to invoke {@link #copyInto(Object, int)}.
345 default void copyInto(Integer[] boxed, int offset) {
347 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Integer[], int)");
415 * it is recommended to invoke {@link #copyInto(Object, int)}.
418 default void copyInto(Long[] boxed, int offset) {
420 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Long[], int)");
490 * and it is recommended to invoke {@link #copyInto(Object, int)}.
493 default void copyInto(Double[] boxed, int offset) {
495 Tripwire.trip(getClass(), "{0} calling Node.OfDouble.copyInto(Double[], int)");