ot::Heap::Array::At() const method
Gets a pointer to the element at a given index. Unlike `operator[]`, this method checks @p aIndex to be valid and within the current length. The returned pointer is valid only while the `Array` remains unchanged.
Syntax
const Type *At(IndexType aIndex) const; Return value
A pointer to element in array at @p aIndex or `nullptr` if @p aIndex is not valid.