When are associative arrays meant to throw a RangeError?

Andrej Mitrovic andrej.mitrovich at gmail.com
Sun Feb 19 04:37:03 PST 2012


On 2/19/12, Timon Gehr <timon.gehr at gmx.ch> wrote:
> Concatenation only works if at least one of the types is an array.

Ah, good point. Still can be worked around:

struct Hash(Key, Val)
{
    struct WrapVal(Val)
    {
        Val val;

        auto opCat(Val rhs)
        {
            return [val] ~ rhs;
        }

        alias val this;
    }

    alias WrapVal!Val ValType;

    ValType[Key] aa;

    ValType opIndex(Key key)
    {
        return aa.get(key, ValType.init);
    }

    alias aa this;
}

class Chunk { }
alias Hash!(string, Chunk) ChunkHash;

void main()
{
    ChunkHash chunks;
    Chunk[] tempVar = chunks["CCCC"] ~ new Chunk();
}


More information about the Digitalmars-d mailing list