MCPcopy Create free account
hub / github.com/chen3feng/toft / DoAndWith

Method DoAndWith

container/bitmap.cpp:14–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12namespace details {
13
14void BitmapBase::DoAndWith(WordType* words, const WordType* words2, size_t word_size)
15{
16 for (size_t i = 0; i < word_size; ++i)
17 words[i] &= words2[i];
18}
19
20void BitmapBase::DoOrWith(WordType* words, const WordType* words2, size_t word_size)
21{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected