Determines if given index is valid. The index. true if is valid a index; otherwise, false .
| 229 | /// <param name="index">The index.</param> |
| 230 | /// <returns><c>true</c> if is valid a index; otherwise, <c>false</c>.</returns> |
| 231 | bool IsValidIndex(const int32 index) const |
| 232 | { |
| 233 | return index < _count && index >= 0; |
| 234 | } |
| 235 | |
| 236 | /// <summary> |
| 237 | /// Gets the pointer to the first item in the collection (linear allocation). |
no outgoing calls
no test coverage detected