vote up 3 vote down star
1

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'

flag

4 Answers

vote up 2 vote down check

.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue()

[a:1,b:2,c:3].containsValue(3)
[a:1,b:2,c:3].containsKey('a')
link|flag
vote up 1 vote down

If you really want your includes method on an ArrayList, just add it:

ArrayList.metaClass.includes = { i -> i in delegate }
link|flag
vote up 7 vote down

Some syntax sugar

1 in [1,2,3] == true

link|flag
vote up 3 vote down

[1,2,3].contains(1) == true

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.