ot::Array::Find() const method
Finds the first match of a given entry in the array. Uses `==` operator to compare the array elements with @p aEntry.
Syntax
const Type *Find(const Type &aEntry) const; Arguments
aEntry
The entry to search for within the array.
Return value
A pointer to matched array element, or `nullptr` if a match could not be found.