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.
1 parent 4e2dcdf commit 367cc9fCopy full SHA for 367cc9f
crates/circuits/primitives/derive/src/cols_ref/README.md
@@ -44,7 +44,7 @@ struct ExampleCols<T, const N: usize> {
44
which will generate a columns struct that uses references to the fields.
45
```rust
46
struct ExampleColsRef<'a, T, const N: usize> {
47
- arr: &'a [T; N],
+ arr: ndarray::ArrayView1<'a, T>, // an n-dimensional view into the input slice (ArrayView2 for 2D arrays, etc.)
48
sum: &'a T,
49
}
50
```
0 commit comments