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
True when a matching element is found.