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.
noir-r1cs/src/utils/mod
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On 2025-05-21 @recmo wrote in 3e2e388 “Add PAT”:
3e2e388
Cleanup when rust-lang/rust#96097 lands Required for MaybeUninit
MaybeUninit
const CACHE_SIZE: usize = 1 << 15; CACHE_SIZE / size_of::<T>() } /// Unzip a [[(T,T); N]; M] into ([[T; N]; M],[[T; N]; M]) using move semantics // TODO: Cleanup when <https://github.com/rust-lang/rust/issues/96097> lands #[allow(unsafe_code)] // Required for `MaybeUninit` fn unzip_double_array<T: Sized, const N: usize, const M: usize>( input: [[(T, T); N]; M], ) -> ([[T; N]; M], [[T; N]; M]) { // Create uninitialized memory for the output arrays let mut left: [[MaybeUninit<T>; N]; M] = [const { [const { MaybeUninit::uninit() }; N] }; M];
From noir-r1cs/src/utils/mod.rs:35
noir-r1cs/src/utils/mod.rs:35
The text was updated successfully, but these errors were encountered:
recmo
No branches or pull requests
On 2025-05-21 @recmo wrote in
3e2e388
“Add PAT”:Cleanup when rust-lang/rust#96097 lands
Required for
MaybeUninit
From
noir-r1cs/src/utils/mod.rs:35
The text was updated successfully, but these errors were encountered: