We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is the motivating example for this crate (slight difference between README and docs):
struct Foo<T, N> { data: [T; N] }
Could this not be written (in recent Rust versions) as:
struct Foo<T, const N: usize> { data: [T; N] }
If not, maybe update the motivating example?