Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. array.filter { it == "value" }.any()
  2.  
  3. "value" in array
  4.  
  5. array.contains("value")
  6.  
  7. val contains = "a" in arrayOf("a", "b", "c")
Add Comment
Please, Sign In to add comment