* Restrieves a value from an array. * * @param index The index. * @returns The value. */
| 35 | * @returns The value. |
| 36 | */ |
| 37 | Value Array::Get(SizeType index) const |
| 38 | { |
| 39 | ObjectLock olock(this); |
| 40 | |
| 41 | return m_Data.at(index); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Sets a value in the array. |
no outgoing calls
no test coverage detected