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
Update all the namespaces in all the constructors in storage-plus to accept &str.
We can still store &[u8] internally (maybe change that later), but at least the constructor is simpler.
As &str.as_bytes() is a const fn, we can do this in a const constructor.
The text was updated successfully, but these errors were encountered:
Update all the namespaces in all the constructors in storage-plus to accept
&str
.We can still store
&[u8]
internally (maybe change that later), but at least the constructor is simpler.As
&str.as_bytes()
is aconst fn
, we can do this in aconst
constructor.The text was updated successfully, but these errors were encountered: