pub fn is_comment_line(
line: &[u8],
comment_prefix: Option<&CommentPrefix>,
) -> boolExpand 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.