aboutsummaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cell.rs b/src/cell.rs
index e1e3a5b..aa1b718 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -84,6 +84,9 @@ impl Cell {
self.len & 0x80 == 0x80
}
+ /// Returns whether the cell contains the second half of a wide character
+ /// (in other words, whether the previous cell in the row contains a wide
+ /// character)
#[must_use]
pub fn is_wide_continuation(&self) -> bool {
self.len & 0x40 == 0x40