Returns whether or not the passed key is in the associative array.
Key.
true if the key is in the associative array; false if not.
MutexedAA!(string[int]) aa; aa.setup(); // important! aa[1] = "one"; assert(aa.has(1));
Returns whether or not the passed key is in the associative array.