| 262 | /// } |
| 263 | template <typename Word> |
| 264 | constexpr Word SpliceWord(int n, Word low, Word high) { |
| 265 | return (high & ~PrecedingWordBitmask<Word>(n)) | (low & PrecedingWordBitmask<Word>(n)); |
| 266 | } |
| 267 | |
| 268 | /// \brief Pack integers into a bitmap in batches of 8 |
| 269 | template <int batch_size> |