Macro bs_starts_with1

Source
macro_rules! bs_starts_with1 {
    ($context:expr, $pattern:expr) => { ... };
}
Expand description

Determine if the remaining stream starts with $pattern, comparing only the first byte.

This macro assumes that $pattern.len() bytes are available for reading.