Delete one element from the buffer.
| 207 | |
| 208 | /// Delete one element from the buffer. |
| 209 | void Delete(int position) { |
| 210 | PLATFORM_ASSERT((position >= 0) && (position < lengthBody)); |
| 211 | if ((position < 0) || (position >= lengthBody)) { |
| 212 | return; |
| 213 | } |
| 214 | DeleteRange(position, 1); |
| 215 | } |
| 216 | |
| 217 | /// Delete a range from the buffer. |
| 218 | /// Deleting positions outside the current range fails. |
nothing calls this directly
no outgoing calls
no test coverage detected