Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
M.Contains (K)
(contains? m k)
bool keyExists = m.ContainsKey(key)
if (k in m) { }
m.containsKey(k)
Map.has_key?(m, k)
maps:is_key(K, M).
_, ok := m[k]
(/=Nothing) (lookup k m)
_m.has(_k)
m.hasOwnProperty(k)
k in m
m.containsKey(k)
(nth-value 1 (gethash k m))
m[k] ~= nil
array_key_exists($k, $m)
exists $m->{$k}
k in m
m.get(k)
m.has_key?(k)
m.key?(k)
m.include?(k)
m.contains(k)
(assoc k m)
m includesKey: k.
If m.ContainsKey(k) Then...