* Returns the number of elements in the array. * * @returns Number of elements. */
| 122 | * @returns Number of elements. |
| 123 | */ |
| 124 | size_t Array::GetLength() const |
| 125 | { |
| 126 | ObjectLock olock(this); |
| 127 | |
| 128 | return m_Data.size(); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Checks whether the array contains the specified value. |
no test coverage detected