-Added: List.indexedIterator which allows you to create a iterator with a customized iteration indecies. Useful if you want to transform lists output. -Added: PriorityQueue.contains is now a function -Added: Iterators/Async Builders now support MapToPrimitiveType function on the object variant. So more processing can be done. (Will be expanded upon later versions) -Updated: SimpleCodeGenerator 1.3.0 is now being used which allows for iterative code support.
12 lines
167 B
Java
12 lines
167 B
Java
package speiger.src.collections.tests;
|
|
|
|
@SuppressWarnings("javadoc")
|
|
public enum PriorityQueueTest
|
|
{
|
|
IN_OUT,
|
|
PEEK,
|
|
CONTAINS,
|
|
REMOVE,
|
|
TO_ARRAY,
|
|
COPY;
|
|
} |