| 181 | return *this; |
| 182 | } |
| 183 | ~TArray () |
| 184 | { |
| 185 | if (Array) |
| 186 | { |
| 187 | if (Count > 0) |
| 188 | { |
| 189 | DoDelete (0, Count-1); |
| 190 | } |
| 191 | free (Array); |
| 192 | Array = NULL; |
| 193 | Count = 0; |
| 194 | Most = 0; |
| 195 | } |
| 196 | } |
| 197 | // Check equality of two arrays |
| 198 | bool operator==(const TArray<T> &other) const |
| 199 | { |
nothing calls this directly
no outgoing calls
no test coverage detected