AngelScript signature: void string::insert(uint pos, const string &in other)
| 482 | // AngelScript signature: |
| 483 | // void string::insert(uint pos, const string &in other) |
| 484 | static void StringInsert(unsigned int pos, const string &other, string &str) |
| 485 | { |
| 486 | // We don't register the method directly because the argument types change between 32bit and 64bit platforms |
| 487 | str.insert(pos, other); |
| 488 | } |
| 489 | |
| 490 | // AngelScript signature: |
| 491 | // void string::erase(uint pos, int count = -1) |
no outgoing calls
no test coverage detected