From 9ec5c4002f5f953604ac5dbcb4e32607ce727697 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 6 Mar 2021 23:22:58 -0500 Subject: document a method --- src/cell.rs | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit v1.2.3-54-g00ecf