Search Results

1
vote

How to check if element in groovy array/hash/collection/list?

If you really want your includes method on an ArrayList, just add it: ArrayList.metaClass.includes = { i -> i in delegate } …