Skip to content

GraphemeCursor::prev_boundary() crashes when the current position is at the beginning of the chunk #39

Closed
@jmuk

Description

@jmuk

It'd be good if the following code works.

let s = "abcd";
let mut cursor = GraphemeCursor::new(2, s.len(), true);
assert_eq!(cursor.prev_boundary(&s[2..], 2), Err(GraphemeIncomplete::PrevChunk));
assert_eq!(cursor.prev_boundary(&s[..2], 2), Ok(Some(1));

Currently it crashes during the first assertion, since prev_boundary expects at least there's one character from the chunk start to the cursor position.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions