run_full_extractor() — tailwindcss Function Reference
Architecture documentation for the run_full_extractor() function in main.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 249037b9_4a9d_f8f9_097b_cca80c8f3893["run_full_extractor()"] d9f8c9df_4e7d_0146_3baf_4cc1feeb53cc["run()"] d9f8c9df_4e7d_0146_3baf_4cc1feeb53cc -->|calls| 249037b9_4a9d_f8f9_097b_cca80c8f3893 style 249037b9_4a9d_f8f9_097b_cca80c8f3893 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/main.rs lines 7–16
fn run_full_extractor(input: &[u8]) -> Vec<&[u8]> {
Extractor::new(input)
.extract()
.into_iter()
.map(|x| match x {
Extracted::Candidate(bytes) => bytes,
Extracted::CssVariable(bytes) => bytes,
})
.collect::<Vec<_>>()
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does run_full_extractor() do?
run_full_extractor() is a function in the tailwindcss codebase.
What calls run_full_extractor()?
run_full_extractor() is called by 1 function(s): run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free