| 159 | } |
| 160 | |
| 161 | array get(int64_t index) const |
| 162 | { |
| 163 | if constexpr (is_and) { |
| 164 | return create_and_kernel(a_[index], b_[index]); |
| 165 | } else { |
| 166 | return create_or_kernel(a_[index], b_[index]); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void nonzero(icm::bit_vector_view bv) const |
| 171 | { |
nothing calls this directly
no test coverage detected