Logo

Programming-Idioms

History of Idiom 12 > diff from v71 to v72

Edit summary for version 72 by ac:
[Haskell] Infix is more idiomatic for elem

Version 71

2019-09-26, 14:55:42

Version 72

2019-09-26, 15:00:44

Idiom #12 Check if list contains a value

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

Illustration

Idiom #12 Check if list contains a value

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

Illustration
Extra Keywords
array vector
Extra Keywords
array vector
Code
elem x list
Code
x `elem` list
Doc URL
http://hackage.haskell.org/package/base-4.8.1.0/docs/Data-Foldable.html#v:elem
Doc URL
http://hackage.haskell.org/package/base-4.8.1.0/docs/Data-Foldable.html#v:elem