'apply' for associative arrays - to support foreach
Delete key entry in aa[]. If key is not in aa[], do nothing.
Get pointer to value in associative array indexed by key. Add entry for key if it is not already there.
Get pointer to value in associative array indexed by key. Returns null if it is not already there. Used for both "aakey" and "key in aa"
Produce array of N byte keys from aa. The actual type is painted on the return value by the frontend This means the returned length should be the number of elements
Determine number of entries in associative array.
Rehash an array.
Produce array of values from aa. The actual type is painted on the return value by the frontend This means the returned length should be the number of elements
Align to next pointer boundary, so that GC won't be faced with misaligned pointers in value.
Part of the D programming language runtime library. Implementation of associative arrays.