is_comment_line

Function is_comment_line 

Source
pub fn is_comment_line(
    line: &[u8],
    comment_prefix: Option<&CommentPrefix>,
) -> bool
Expand description

Checks if a line in a CSV file is a comment based on the given comment prefix configuration.

This function is used during CSV parsing to determine whether a line should be ignored based on its starting characters.