-
Notifications
You must be signed in to change notification settings - Fork 378
Open
Description
For our project we need the BigInt type to have a certain alignment. Would you consider modifying the struct definition to be something like
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
#[must_use]
#[repr(C)]
pub struct BigInt<A, const N: usize>{
// BigInt is aligned to (at least) A
_aligner: [A; 0],
data: [u64; N]
}If yes, I can make the changes and open a PR
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels