| 320 | } |
| 321 | |
| 322 | bool BfAtomComposite::StartsWith(const BfAtomComposite& other) const |
| 323 | { |
| 324 | if (mSize < other.mSize) |
| 325 | return false; |
| 326 | for (int i = 0; i < other.mSize; i++) |
| 327 | if (mParts[i] != other.mParts[i]) |
| 328 | return false; |
| 329 | return true; |
| 330 | } |
| 331 | |
| 332 | bool BfAtomComposite::EndsWith(const BfAtomComposite& other) const |
| 333 | { |
no outgoing calls
no test coverage detected