Hi, suppose I have an association
assoc = <|{1, 2} -> 1, {2, 3} -> 2|>
and I want to lookup the value of {1, 2} in assoc, then what is the best way to do it? It is not
Lookup[assoc, {1, 2}]
since that threads the Lookup over {1, 2} and returns {Missing["KeyAbsent", 1], Missing["KeyAbsent", 2]}. Is this an unintended bug? I guess it would be more appropriate if Mathematica didn't thread Lookup over lists...