| 31 | |
| 32 | template <class T> |
| 33 | TCompressedArray CreateCompressedArray(TConstArrayRef<T> data, ui32 bitsPerKey) { |
| 34 | return TCompressedArray( |
| 35 | data.size(), |
| 36 | bitsPerKey, |
| 37 | TMaybeOwningArrayHolder<ui64>::CreateOwning( |
| 38 | CompressVector<ui64>(data.data(), data.size(), bitsPerKey) |
| 39 | ) |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | template <class T> |
| 44 | void TestEqualityComparisonOnGenerated() { |
nothing calls this directly
no test coverage detected