const_fn_assert 0.1.3+deprecated

Assertions for const functions.
Documentation
  • Coverage
  • 33.33%
    3 out of 9 items documented1 out of 2 items with examples
  • Size
  • Source code size: 8.11 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 698.47 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • powlpy/const_fn_assert
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • powlpy

const_fn_assert

Build Status Crate Documentation Minimum rustc version License

This crate provide macros assertions who can be used in const function.

Example

const fn my_const_fn(x: u8) -> u8 {
    cfn_assert!(x < 5);
    x + 1
}

const _CONST: u8 = my_const_fn(1);

fn main() {
    let _var = my_const_fn(2);
}

The function below panic when running :

fn fail() {
    let _var = my_const_fn(6); //thread 'main' panicked at 'index out of bounds: the len is 1 but the index is 1'
}

And this code don't compile :

const _CONST: u8 = my_const_fn(6); //~ ERROR any use of this value will cause an error

Available macros are cfn_assert, cfn_assert_eq, cfn_assert_ne, cfn_debug_assert, cfn_debug_assert_eq and cfn_debug_assert_ne.

Installation

This crate is available on crates.io and can be used by adding the following to your project's Cargo.toml:

[dependencies]
const_fn_assert = "0.1"

and this to your crate root (main.rs or lib.rs):

#[macro_use]
extern crate const_fn_assert;