private-attribution / ipa

A raw implementation of Interoperable Private Attribution
MIT License
41 stars 23 forks source link

Gf32Bit Conversion for BooleanArray #1254

Open danielmasny opened 1 week ago

danielmasny commented 1 week ago

currently we implement

impl TryFrom<$name> for Vec<Gf32Bit>

in the macro that implements any BA type (and $name is the name of the BA type e.g. BA256).

The task is to replace Vec<Gf32Bit> with an array using constant generics or a GenericArray. Ideally this is done with minimal propagation of the constant generic or ArrayLength type.