-Added: Empty/Synchronized/Unmodifiable Collections/Lists/Iterators -Changed: ObjectCollections now have more bulk Methods -Added: IArray for functions that would only apply to arrays.
9 lines
185 B
Plaintext
9 lines
185 B
Plaintext
package speiger.src.collections.PACKAGE.utils;
|
|
|
|
import speiger.src.collections.utils.IArray;
|
|
|
|
public interface IARRAY KEY_GENERIC_TYPE extends IArray
|
|
{
|
|
public KEY_TYPE[] elements();
|
|
}
|