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'
|
|
.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue()
|
||
|
|
|
|
If you really want your includes method on an ArrayList, just add it:
|
||
|
|
|
|
Some syntax sugar 1 in [1,2,3] == true |
||
|
|
|
|
[1,2,3].contains(1) == true |
||
|
|
