![crates-badge] ![docs-badge] ![license-badge] ![rustc-badge]
An attribute for easy generation of a const function with conditional compilations.
Add this to your Cargo.toml
:
toml
[dependencies]
const_fn = "0.3"
The current const_fn requires Rust 1.31 or later.
When using like the following functions to control unstable features:
toml
[features]
const_unstable = []
It can be written as follows:
```rust
use constfn::constfn;
pub struct Foo
implFoo
.
#[constfn(feature = "constunstable")]
pub const fn new(x: T) -> Self {
Self { x }
}
}
```
Code like this will be generated:
```rust
pub struct Foo
implFoo
.
#[cfg(feature = "const_unstable")]
pub const fn new(x: T) -> Self {
Self { x }
}
/// Constructs a new `Foo`.
#[cfg(not(feature = "const_unstable"))]
pub fn new(x: T) -> Self {
Self { x }
}
} ```
See [test_suite] for more examples.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.