MCPcopy Create free account
hub / github.com/FastLED/FastLED / _is_qualified

Function _is_qualified

ci/lint_cpp/test_include_paths_checker.py:117–119  ·  view source on GitHub ↗

Return True if the include uses a directory-qualified path.

(include_path: str)

Source from the content-addressed store, hash-verified

115
116
117def _is_qualified(include_path: str) -> bool:
118 """Return True if the include uses a directory-qualified path."""
119 return any(include_path.startswith(p) for p in _VALID_PREFIXES)
120
121
122def _is_relative(include_path: str) -> bool:

Callers 1

check_file_contentMethod · 0.85

Calls 1

anyFunction · 0.85

Tested by

no test coverage detected