digitalmars.D.dtl - template matching for associative arrays
- PNoel <span please.no> Mar 30 2007
- "David B. Held" <dheld codelogicconsulting.com> Apr 01 2007
Hi,
for arrays there is this way to match arrays in template arguments:
class SomeClass(T : T[])
{
}
But how can you achieve this for AA?
class SomeClass(K[V])
{
}
.. doesn't work. But this does:
class SomeClass(K, V, M : K[V])
{
}
.. but this way you have to know the key and value type in advance
which doesn't help to make the code "better".
Is there a library function to accomplish this or at least a map type
decomposition to key/value types?
Thanks in advance.
Mar 30 2007
PNoel wrote:[...] .. doesn't work. But this does: class SomeClass(K, V, M : K[V]) { } .. but this way you have to know the key and value type in advance which doesn't help to make the code "better". Is there a library function to accomplish this or at least a map type decomposition to key/value types?
I'm no expert on D template syntax, but perhaps you could try this: class SomeClass(M: K[V], K, V) { .... } Dave
Apr 01 2007








"David B. Held" <dheld codelogicconsulting.com>