| 423 | //////////////////////////////////////////////////////////////////////////////// |
| 424 | |
| 425 | i64 TSharedRefArray::ByteSize() const |
| 426 | { |
| 427 | i64 result = 0; |
| 428 | if (*this) { |
| 429 | for (const auto& part : *this) { |
| 430 | result += part.Size(); |
| 431 | } |
| 432 | } |
| 433 | return result; |
| 434 | } |
| 435 | |
| 436 | std::vector<TSharedRef> TSharedRefArray::ToVector() const |
| 437 | { |
no test coverage detected