Speiger 8d079ae0ab More Work done on the Collections.
-Added: Empty/Synchronized/Unmodifiable Collections/Lists/Iterators
-Changed: ObjectCollections now have more bulk Methods
-Added: IArray for functions that would only apply to arrays.
2020-12-01 02:43:13 +01:00

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();
}