Home | History | Annotate | Download | only in collect

Lines Matching refs:elements

62    * @param first the first array of elements to concatenate
63 * @param second the second array of elements to concatenate
78 * @param array the array of elements to append
81 * elements of {@code array} occupying the remaining elements.
93 * @param array the array of elements to prepend
114 * Returns an array containing all of the elements in the specified
121 * the array has more elements than the collection), the element in the array
124 * caller knows that the collection does not contain any null elements.
126 * <p>This method returns the elements in the order they are returned by the
132 * @param c the collection for which to return an array of elements
133 * @param array the array in which to place the collection elements
151 * Returns an array containing all of the elements in the specified
152 * collection. This method returns the elements in the order they are returned
163 * @param c the collection for which to return an array of elements
169 private static Object[] fillArray(Iterable<?> elements, Object[] array) {
171 for (Object element : elements) {