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
Currently load, load_unchecked, store and store_unchecked essentially reimplement slicing logic with their offset parameter. They could instead take only one parameter (the slice) and have the user replace:
u32s::load(my_slice, n)
with
u32s::load(&my_slice[n..])
I believe there is no downside to doing this other than the fact that it would require a major version bump (although every version bump is major right now).
The text was updated successfully, but these errors were encountered:
Currently
load
,load_unchecked
,store
andstore_unchecked
essentially reimplement slicing logic with theiroffset
parameter. They could instead take only one parameter (the slice) and have the user replace:with
I believe there is no downside to doing this other than the fact that it would require a major version bump (although every version bump is major right now).
The text was updated successfully, but these errors were encountered: