Logo

Programming-Idioms

History of Idiom 52 > diff from v45 to v46

Edit summary for version 46 by programming-idioms.org:
[Dart] +DocURL

Version 45

2020-12-14, 22:27:55

Version 46

2020-12-14, 22:31:58

Idiom #52 Check if map contains value

Determine whether map m contains an entry with value v, for some key.

Idiom #52 Check if map contains value

Determine whether map m contains an entry with value v, for some key.

Variables
m,v
Variables
m,v
Extra Keywords
table dictionary hash
Extra Keywords
table dictionary hash
Code
m.containsValue(v);
Code
m.containsValue(v);
Doc URL
https://api.dart.dev/stable/2.10.4/dart-core/Map/containsValue.html