Garden 🌻

List::contains()

Does this list contain item?

Example
[10, 11, 12].contains(12) //-> True
Source Code
public method contains<T>(this: List<T>, item: T): Bool {
  __BUILT_IN_IMPLEMENTATION
}