How to check if element in groovy array/hash/collection/list? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:40:18Z http://stackoverflow.com/feeds/question/51927 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list 3 How to check if element in groovy array/hash/collection/list? banderson623 2008-09-09T13:47:51Z 2008-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#51951 3 Answer by banderson623 for How to check if element in groovy array/hash/collection/list? banderson623 2008-09-09T13:58:24Z 2008-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#62082 7 Answer by dahernan for How to check if element in groovy array/hash/collection/list? dahernan 2008-09-15T10:09:55Z 2008-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#66753 2 Answer by shemnon for How to check if element in groovy array/hash/collection/list? shemnon 2008-09-15T20:44:19Z 2008-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#163883 1 Answer by John Flinchbaugh for How to check if element in groovy array/hash/collection/list? John Flinchbaugh 2008-10-02T18:35:56Z 2008-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 -&gt; i in delegate } </code></pre>