Check if the file has any AI-involved content.
(&self)
| 676 | |
| 677 | /// Check if the file has any AI-involved content. |
| 678 | pub fn has_ai_content(&self) -> bool { |
| 679 | self.ranges.iter().any(|r| r.credit.involves_ai()) |
| 680 | } |
| 681 | |
| 682 | /// Get all ranges involving AI. |
| 683 | pub fn ai_ranges(&self) -> Vec<&CreditRange> { |
nothing calls this directly
no test coverage detected