Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2023-12-15 01:23:59 +0300
committerJunio C Hamano <gitster@pobox.com>2023-12-15 01:38:07 +0300
commite5d48bf38bc0e1f44f4daa7c8e0f75cd9296d020 (patch)
tree24cc1a25935239a3e8bec52f97f31c869f3faf11 /pack-bitmap.h
parentdab60934e3057642453bcc6153af076cbcac0d47 (diff)
ewah: implement `bitmap_is_empty()`
In a future commit, we will want to check whether or not a bitmap has any bits set in any of its words. The best way to do this (prior to the existence of this patch) is to call `bitmap_popcount()` and check whether the result is non-zero. But this is semi-wasteful, since we do not need to know the exact number of bits set, only whether or not there is at least one of them. Implement a new helper function to check just that. Suggested-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-bitmap.h')
0 files changed, 0 insertions, 0 deletions