| 380 | } |
| 381 | |
| 382 | char* String::begin() { |
| 383 | if (_small.size & Implementation::SmallStringBit) |
| 384 | return _small.data; |
| 385 | return _large.data; |
| 386 | } |
| 387 | |
| 388 | const char* String::begin() const { |
| 389 | if (_small.size & Implementation::SmallStringBit) |
no outgoing calls
no test coverage detected