I've seen examples using .get and "in" to test for keys:
....aa.get("hello", "salute") == "ciao"....
...."hello" in aa....Can I use this .get function or "in" operator with multi-D arrays? string[string][string][string] aa; ....if (["hello"][][] in aa).... ?
