| 226 | /// } |
| 227 | template <typename Word> |
| 228 | constexpr Word SpliceWord(int n, Word low, Word high) { |
| 229 | return (high & ~PrecedingWordBitmask<Word>(n)) | (low & PrecedingWordBitmask<Word>(n)); |
| 230 | } |
| 231 | |
| 232 | /// \brief Pack integers into a bitmap in batches of 8 |
| 233 | template <int batch_size> |