AngelScript signature: void string::erase(uint pos, int count = -1)
| 417 | // AngelScript signature: |
| 418 | // void string::erase(uint pos, int count = -1) |
| 419 | static void StringErase(unsigned int pos, int count, string &str) |
| 420 | { |
| 421 | // We don't register the method directly because the argument types change between 32bit and 64bit platforms |
| 422 | str.erase(pos, (size_t)(count < 0 ? string::npos : count)); |
| 423 | } |
| 424 | |
| 425 | |
| 426 | // AngelScript signature: |
no outgoing calls
no test coverage detected