AngelScript signature: void string::insert(uint pos, const string &in other)
| 409 | // AngelScript signature: |
| 410 | // void string::insert(uint pos, const string &in other) |
| 411 | static void StringInsert(unsigned int pos, const string &other, string &str) |
| 412 | { |
| 413 | // We don't register the method directly because the argument types change between 32bit and 64bit platforms |
| 414 | str.insert(pos, other); |
| 415 | } |
| 416 | |
| 417 | // AngelScript signature: |
| 418 | // void string::erase(uint pos, int count = -1) |
no outgoing calls
no test coverage detected