Logo

Programming-Idioms

History of Idiom 12 > diff from v15 to v16

Edit summary for version 16 by :

Version 15

2015-08-22, 06:55:45

Version 16

2015-08-22, 06:56:07

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