This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
Renamed bitmap::utils::null_count
to bitmap::utils::count_zeros
#342
Labels
null
is a logical construct, butbitmap
is a physical construct (e.g. boolean values are also represented as bitmaps).Since Rust's std calls these
count_zeros
(e.g.i32::count_zeros()
), it makes sense to keep it aligned with the std.The text was updated successfully, but these errors were encountered: