ArrayList.contains

Returns <tt>true</tt> if this list contains the specified element. More formally, returns <tt>true</tt> if and only if this list contains at least one element <tt>e</tt> such that <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.

@param o element whose presence in this list is to be tested @return <tt>true</tt> if this list contains the specified element

class ArrayList(E)
override const
bool
contains
(
E o
)

Meta