* @brief Get a value at a specified index, non-modifiable * @param idx the index to get the value at * @retval The value at index idx * @note The caller must not use `delete` on the returned value */
| 152 | * @note The caller must not use `delete` on the returned value |
| 153 | */ |
| 154 | const V* valueAt(unsigned idx) const |
| 155 | { |
| 156 | return entries[idx].value; |
| 157 | } |
| 158 | |
| 159 | /* |
| 160 | * @brief Get a value at a specified index |
no test coverage detected