summaryrefslogtreecommitdiffstats
path: root/grep-matcher/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'grep-matcher/src/lib.rs')
-rw-r--r--grep-matcher/src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/grep-matcher/src/lib.rs b/grep-matcher/src/lib.rs
index 49d6358f..9a067efa 100644
--- a/grep-matcher/src/lib.rs
+++ b/grep-matcher/src/lib.rs
@@ -266,6 +266,16 @@ impl LineTerminator {
LineTerminatorImp::CRLF => &[b'\r', b'\n'],
}
}
+
+ /// Returns true if and only if the given slice ends with this line
+ /// terminator.
+ ///
+ /// If this line terminator is `CRLF`, then this only checks whether the
+ /// last byte is `\n`.
+ #[inline]
+ pub fn is_suffix(&self, slice: &[u8]) -> bool {
+ slice.last().map_or(false, |&b| b == self.as_byte())
+ }
}
impl Default for LineTerminator {