Programming Tips - How can I check if an element is present in a collection?

Date: 2014feb8 Language: Scala Q. How can I check if an element is present in a collection? A. Use the contains() method.
if (mycoll.contains("hello")) { // Its there }