You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BitVec lets you manipulate individual bits, which is often useful, but it doesn't really help if you have a [u8] (especially a large one). Adding a sort of BitVecView type that could be created from a reference to a slice of integers and would behave like a BitVec using the original slice for storage would enable this.
The text was updated successfully, but these errors were encountered:
BitVec
lets you manipulate individual bits, which is often useful, but it doesn't really help if you have a[u8]
(especially a large one). Adding a sort ofBitVecView
type that could be created from a reference to a slice of integers and would behave like a BitVec using the original slice for storage would enable this.The text was updated successfully, but these errors were encountered: