stdx: Add floor/ceil/is grapheme boundary functions to RopeSliceExt

These functions are the equivalent of 23b424a46 for grapheme clusters.
In order to add the `is_grapheme_boundary` function we also need to
query whether a byte index lies on a character boundary, so this change
also adds `is_char_boundary`.
This commit is contained in:
Michael Davis 2025-01-26 16:52:29 -05:00
parent 0364521dca
commit 39b72329b4
No known key found for this signature in database
6 changed files with 213 additions and 4 deletions

View file

@ -20,7 +20,7 @@ helix-core = { path = "../helix-core" }
bitflags.workspace = true
cassowary = "0.3"
unicode-segmentation = "1.12"
unicode-segmentation.workspace = true
crossterm = { version = "0.28", optional = true }
termini = "1.0"
serde = { version = "1", "optional" = true, features = ["derive"]}