Convert array to tupled array easily?

2015-09-14 Thread Prudence via Digitalmars-d-learn
I created the following code that some of you have already seen. It's sort of a multiple value AA array with self tracking. The problem is, that for some type values, such as delegates, the comparison is is identical. (basically when the delegate is the same) To solve that problem, I'd like

Re: Convert array to tupled array easily?

2015-09-14 Thread Ali Çehreli via Digitalmars-d-learn
On 09/14/2015 04:23 PM, Prudence wrote: > To solve that problem, I'd like to try and turn the Value into Tuples of > the Value and the address of the SingleStore wrapper(which should be > unique). > > e.g., > public Tuple!(TValue, void*)[][TKey] Store; After changing that, I methodically dealt