Although I consider myself an lower-intermediate Haskeller (understand RankNTypes, but struggle with arrow "proc" notation), I am even more noobish at Java. Nevertheless, I decided that the one thing I couldn't do without in Java was something akin to the Ix type class and Haskell's flexibly indexed arrays. I set out to make my own, but I've come right smack up against my own lack of experience. Can anyone give me any advice or pointers on this task? Am I going about it all wrong, or do I have the right idea? Does the Java SE 7 Platform already have something like this that I somehow missed? Has someone else already done this?
I have the following interface simulating the Ix type class:
public interface Ix<T extends Ix<T>> {
int indexIn(IxRange<T> range);
boolean isIn(IxRange<T> range);
boolean isFirstIn(IxRange<T> range);
boolean isLastIn(IxRange<T> range);
T nextIndexIn(IxRange<T> range);
T prevIndexIn(IxRange<T> range);
IxRange<T> maxRange();
}
I couldn't copy the original type class exactly due to lack of static methods in interfaces, as usual with Java, but I think this is a reasonable way around that (other than maxRange(), which just bugs me). If anyone has any better ideas, please tell me.
Since I didn't have tuples available (I don't want to depend on FunctionalJava), I made the following class (Ix<T> methods, among others, omitted).
public class IxRange<T extends Ix<T>> implements Ix<IxRange<T>> {
public final T lowerBound;
public final T upperBound;
public IxRange(T lB,T uB) {
lowerBound = lB;
upperBound = uB;
}
public int rangeSize() {
return upperBound.indexIn(this) - lowerBound.indexIn(this);
}
}
I then have a class that begins like this:
public class FlexArray<I extends Ix<I>,E> extends AbstractList<E> implements Cloneable
This is where I am having the most trouble, primarily, but by no means exclusively, due to needing an instance first in order to call maxRange() (gah!). I also have several wrapper classes for common types that implement the Ix<T> interface, but that's an auxiliary concern.
To sum up, I am looking for advice on how to proceed, and, if possible, how to refactor Ix<I> to get rid of maxRange() and replace it with something better. General thoughts on the task are welcome as well, but are not the point of this question.