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
next_boundary()
Hello,
In prev_boundary we have this check (for the following unwrap not to panic):
prev_boundary
if self.offset == chunk_start { return Err(GraphemeIncomplete::PrevChunk); }
I suggest this in next_boundary() (for the same reason):
if self.offset == chunk_start + chunk.len() { return Err(GraphemeIncomplete::NextChunk); }
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
In
prev_boundary
we have this check (for the following unwrap not to panic):I suggest this in
next_boundary()
(for the same reason):Thank you!
The text was updated successfully, but these errors were encountered: