AngelScript signature: uint string::length() const
| 426 | // AngelScript signature: |
| 427 | // uint string::length() const |
| 428 | static asUINT StringLength(const string &str) |
| 429 | { |
| 430 | // We don't register the method directly because the return type changes between 32bit and 64bit platforms |
| 431 | return (asUINT)str.length(); |
| 432 | } |
| 433 | |
| 434 | |
| 435 | // AngelScript signature: |