We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's add a new functionality of slicing to Hex, which should take a part of the data and return a new Hex:
Hex
let a = Hex::from_str_bytes("Hello, world!"); let b = a[5..]; println!("{b}");
Should print , world!.
, world!
It should be very similar to how slicing works for strings in Rust.
The text was updated successfully, but these errors were encountered:
@UARTman can you help with this please?
Sorry, something went wrong.
this one is closed, isn't it?
@l3r8yJ I don't think it's solved, I don't see any tests for it. Do you?
@yegor256 then I'll take it
No branches or pull requests
Let's add a new functionality of slicing to
Hex
, which should take a part of the data and return a newHex
:Should print
, world!
.It should be very similar to how slicing works for strings in Rust.
The text was updated successfully, but these errors were encountered: