| 908 | |
| 909 | public: |
| 910 | Status MergeTable(const BinaryMemoTable& other_table) { |
| 911 | return other_table.VisitValuesStatus(0, [this](std::string_view other_value) { |
| 912 | int32_t unused; |
| 913 | return this->GetOrInsert(other_value, &unused); |
| 914 | }); |
| 915 | } |
| 916 | }; |
| 917 | |
| 918 | template <typename T, typename Enable = void> |
nothing calls this directly
no test coverage detected