This blog post discusses the best answers to this question.
As a short summary, if you can install CPAN modules then the best solutions are:
orif any(@ingredients) eq 'flour';
However, a more usual idiom is:if @ingredients->contains('flour');
which i find less clear.if any { $_ eq 'flour' } @ingredients
But please don't use the first() function! It doesn't express the intent of your code at all. Don't use the "Smart match" operator: it is broken. And don't use grep() nor the solution with a hash: they iterate through the whole list. While any() will stop as soon as it finds your value.
Check out the blog post for more details.
PS: i'm answering for people who will have the same question in the future.
In reply to Re: How to find out if X is an element in an array?
by mascip
in thread How to find out if X is an element in an array?
by juahonen
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |