Logo

Programming-Idioms

History of Idiom 12 > diff from v14 to v15

Edit summary for version 15 by :

Version 14

2015-08-22, 06:42:01

Version 15

2015-08-22, 06:55:45

Idiom #12 Check if list contains a value

Check if list contains a value x.
list is any iterable finite container.

Idiom #12 Check if list contains a value

Check if list contains a value x.
list is any iterable finite container.

Imports
classes
Code
result := list.IndexOf(x) <> -1;
Comments bubble
If Items is a TStrings-descendant