| 458 | inline std::size_t UniqueValueCount(ReferenceColumn const& col) { return col.values.size(); } |
| 459 | |
| 460 | inline bool EmptyReference(ReferenceColumn const& col) { return col.values.empty(); } |
| 461 | |
| 462 | inline Span<float const> ExactValues(ReferenceColumn const& col) { |
| 463 | return {col.values.data(), col.values.size()}; |
no test coverage detected