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
I've been finding myself using this crate for a personal project, however a current struggle is to add Bytes together (I currently use get_bytes to addition them), however, it'd be great if we'd be able to simply add those two together:
let byte1 = Byte::from(10)let byte2 = Byte::from(20)let byte3 = byte1 + byte2 // Currently doesn't work
The text was updated successfully, but these errors were encountered:
Hey,
I've been finding myself using this crate for a personal project, however a current struggle is to add
Byte
s together (I currently useget_bytes
to addition them), however, it'd be great if we'd be able to simply add those two together:The text was updated successfully, but these errors were encountered: