Possibly daft question but is FastList missing from javolution 6.0.0, or am I doing something dumb?
Example code
import javolution.util.*;
public class Test {
FastList<String> test;
FastMap<String, String> test2;
}
FastMap resolves and compiles, FastList is an unknown class according to Netbeans.
The docs seem to imply that all collections are in javolution.util.* as per standard java, but is there a different import for FastList?