iota icon indicating copy to clipboard operation
iota copied to clipboard

Related constants in Rust: 1 << iota

Results 4 iota issues
Sort by recently updated
recently updated
newest added

Syntax is the same but with `static` in place of `const`.

help wanted

```rust iota! { pub(crate) const A: u8 = 1 src/main.rs:4:8 | 4 | pub(crate) const A: u8 = 1

help wanted

As introduced in rust 1.37: https://blog.rust-lang.org/2019/08/15/Rust-1.37.0.html#using-unnamed-const-items-for-macros Iota currently rejects code containing underscore names. ```rust iota! { const A: u8 = 1 src/main.rs:5:9 | 5 | | _ | ^ no...

help wanted

The macro_rules implementation is pretty crazy. This library makes more sense as a procedural macro given Rust 1.31.