| 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()}; |
| 464 | } |
| 465 | |
| 466 | inline std::size_t NonZeroWeightCount(GeneratedColumn const& col) { |
| 467 | return std::count_if(col.weights.cbegin(), col.weights.cend(), |
no test coverage detected