public native operator in(item as T) as Boolean
Returns true if the array contains the given element.
import klyn.collections values = fs:[4, 8] print(8 in values) # true
| Parameter | Description |
|---|---|
item | The element to search for. |
True when a matching element is found.