I have a two way dictionary class that I am making to allow me to do a fast lookup in either direction.

My class looks (partially) like this:

public class DoubleDictionary<A,B>
{
    private Dictionary<A, B> _forward;
    private Dictionary<B, A> _backward;

    public A this[B b]
    {
        get { return _backward[b]; }
        set { _backward[b] = value; }
    }

    public B this[A a]
    {
        get { return _forward[a]; }
        set { _forward[a] = value; }
    }
}

I am using the array indexing operator in this example, but just about every method has two generic versions. It works great except in the case where A == B.

If I do

var foo = new DoubleDictionary<int, int>();
int x = foo[3];

It won't even compile because of an ambiguous indexer.

I understand why the compiler has a problem with this, and I agree that it should probably not be legal.

Lets assume I actually have a valid use case for wanting a DoubleDictionary<int,int>, and I arbitrarily choose that the array index should access the forward dictionary.

The solution I have arrived at to work around all of this is to abandon the slick indexing syntax for uniquely named methods for each direction. This makes it much less magic, and much less fun.

Is there any way to give the compiler hints to resolve the ambiguity without having to resort to uniquely named methods? I really like the idea of doing this with overloads and would like to keep it that way. I would prefer to do that in the class so the caller doesn't have to worry about it, but I imagine the caller will have to do some kind of reflection magic to make it work.

If its not possible I would be fine with the restraint that A cannot be the same as B. Is there any way to codify that, so that a declaration of DoubleDictionary<int,int> would not compile? I could throw an exception in the constructor, but it would be nice if it was caught at compile time.

link|improve this question

5  
"This makes it much less magic, and much less fun." I would argue that it improves the design and makes the API more clear. – Martin Doms Apr 13 '11 at 20:50
A fair point. I still like the array indexing, because it feels more like the Dictionary class's indexing which is really nice and concise. – CMP Apr 13 '11 at 20:52
feedback

3 Answers

up vote 2 down vote accepted

You can always keep the indexers, but add the named methods as an auxiliary API - perhaps even via extension methods so you can bring them into play by adding a using directive...

link|improve this answer
That seems incredibly sensible. I get magic for when it is obvious what is going on, but there is also a more explicit mode for when I need it. Sounds good. – CMP Apr 13 '11 at 21:01
feedback

Well, having the two indexers, if it were allowed, would be a monumentally bad design.

Having this dictionary:

var foo = new DoubleDictionary<int, int>();
foo.Add(3, 4);
foo.Add(2, 3);

and then doing:

foo[3]

would you expect to get 2? or 4? and why?

Better make the API clear.

link|improve this answer
feedback

There isn't any way to resolve the ambiguity as-is, given that it's an indexer that doesn't allow you to specify arguments and that the only way to relate type parameters in generic constraints is by inheritance.

I think that a good compromise would be to use the indexer for forward look-ups and something like a GetKeyForValue(B value) method for backward look-ups.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.