Logo

Programming-Idioms

History of Idiom 51 > diff from v45 to v46

Edit summary for version 46 by Jak Drako:
New VB implementation by user [Jak Drako]

Version 45

2019-09-30, 06:31:53

Version 46

2019-09-30, 11:58:03

Idiom #51 Check if map contains key

Determine whether map m contains an entry for key k

Illustration

Idiom #51 Check if map contains key

Determine whether map m contains an entry for key k

Illustration
Extra Keywords
table dictionary hash
Extra Keywords
table dictionary hash
Code
If m.ContainsKey(k) Then...