Uses of Interface
com.intellij.util.ArrayFactory
-
Packages that use ArrayFactory Package Description com.intellij.util -
-
Uses of ArrayFactory in com.intellij.util
Methods in com.intellij.util with parameters of type ArrayFactory Modifier and Type Method Description static <T> T[]
ArrayUtil. append(T[] src, T element, ArrayFactory<T> factory)
static <T> T[]
ArrayUtil. mergeArrayAndCollection(T[] array, Collection<T> collection, ArrayFactory<T> factory)
Allocates new array of sizearray.length + collection.size()
and copies elements ofarray
andcollection
to it.static <T> T[]
ArrayUtil. remove(T[] src, int idx, ArrayFactory<T> factory)
static <T> T[]
ArrayUtil. remove(T[] src, T element, ArrayFactory<T> factory)
-