Skip to content

Instantly share code, notes, and snippets.

@evanrelf
Created May 13, 2024 06:07
Show Gist options
  • Save evanrelf/f775520fb11285a57af8c31b2c1453a1 to your computer and use it in GitHub Desktop.
Save evanrelf/f775520fb11285a57af8c31b2c1453a1 to your computer and use it in GitHub Desktop.
const A: usize = 2;
const B: usize = 3;
#[allow(clippy::assertions_on_constants)]
const _: () = {
assert!(2 <= A && A <= (B + 1) / 2, "Not a valid (a,b)-tree");
assert!(A == (B / 2) + (B % 2), "Not a valid B-tree");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment