Skip to content

feat: Richer tags api #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix warnings
  • Loading branch information
rklaehn committed Mar 10, 2025
commit daf4a88490c1c181f7b28683c1a657c54de5c189
2 changes: 2 additions & 0 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ pub(crate) fn raw_outboard_size(size: u64) -> u64 {
///
/// If the prefix is all FF, this will return false because there is no
/// higher prefix than that.
#[allow(dead_code)]
pub(crate) fn next_prefix(bytes: &mut [u8]) -> bool {
for byte in bytes.iter_mut().rev() {
if *byte < 255 {
Expand All @@ -318,6 +319,7 @@ pub(crate) fn next_prefix(bytes: &mut [u8]) -> bool {
}

/// Increment a byte vector, lexographically.
#[allow(dead_code)]
pub(crate) fn increment_vec(bytes: &mut Vec<u8>) {
for byte in bytes.iter_mut().rev() {
if *byte < 255 {
Expand Down
Loading