blob: 949a83fafdfe4fa0b10054f73d9b3443503d9119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
use regex_automata::DFA;
use crate::unicode::fsm::whitespace_anchored_fwd::WHITESPACE_ANCHORED_FWD;
use crate::unicode::fsm::whitespace_anchored_rev::WHITESPACE_ANCHORED_REV;
/// Return the first position of a non-whitespace character.
pub fn whitespace_len_fwd(slice: &[u8]) -> usize {
WHITESPACE_ANCHORED_FWD.find(slice).unwrap_or(0)
}
/// Return the last position of a non-whitespace character.
pub fn whitespace_len_rev(slice: &[u8]) -> usize {
WHITESPACE_ANCHORED_REV.rfind(slice).unwrap_or(slice.len())
}
|