An attribute for easy generation of a const function with conditional compilations.
Add this to your Cargo.toml
:
toml
[dependencies]
const_fn = "0.1"
and this to your crate root:
```rust
extern crate const_fn; ```
When using like the following functions to control unstable features:
toml
[features]
const = []
It can be written as follows:
```rust
pub const fn empty_vec
Code like this will be generated:
```rust
pub const fn empty_vec
pub fn empty_vec
See [test_suite] for more examples.
The current minimum required Rust version is 1.30.
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.