We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This no longer works:
s[i+j..].to_string() // s is a &str
You now have to write
(&s[(i+j)..]).to_string()
At this point using slice_from is more ergonomic.