How to check if element in groovy array/hash/collection/list? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T10:40:18Zhttp://stackoverflow.com/feeds/question/51927http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list3How to check if element in groovy array/hash/collection/list?banderson6232008-09-09T13:47:51Z2008-10-02T18:35:56Z
<p>How do I figure out if an array contains an element?
I thought there might be something like [1,2,3].includes(1) which would evaluate as 'true'</p>
http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/51951#519513Answer by banderson623 for How to check if element in groovy array/hash/collection/list?banderson6232008-09-09T13:58:24Z2008-09-09T13:58:24Z<p>[1,2,3].contains(1) == true</p>
http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/62082#620827Answer by dahernan for How to check if element in groovy array/hash/collection/list?dahernan2008-09-15T10:09:55Z2008-09-15T10:09:55Z<p>Some syntax sugar</p>
<p>1 in [1,2,3] == true</p>
http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/66753#667532Answer by shemnon for How to check if element in groovy array/hash/collection/list?shemnon2008-09-15T20:44:19Z2008-09-15T20:44:19Z<p>.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue()</p>
<pre><code>[a:1,b:2,c:3].containsValue(3)
[a:1,b:2,c:3].containsKey('a')
</code></pre>
http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/163883#1638831Answer by John Flinchbaugh for How to check if element in groovy array/hash/collection/list?John Flinchbaugh2008-10-02T18:35:56Z2008-10-02T18:35:56Z<p>If you really want your includes method on an ArrayList, just add it:</p>
<pre><code>ArrayList.metaClass.includes = { i -> i in delegate }
</code></pre>