pub fn match_dot_token(bytes: &[u8], pos: usize) -> Option<(usize, bool)>Expand description
Match a dot-delimited operator/literal starting at pos in bytes.
Returns (end_position, is_operator) where is_operator distinguishes
.true./.false. (literals, not operators) from .and./.eq. etc.