Home / Function/ run_full_extractor() — tailwindcss Function Reference

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
  47542824_aa27_11df_75ce_83625975e0f9["run_full_extractor()"]
  51c2ff08_92e9_5d6f_6c06_4fbc2121eec0["run()"]
  51c2ff08_92e9_5d6f_6c06_4fbc2121eec0 -->|calls| 47542824_aa27_11df_75ce_83625975e0f9
  style 47542824_aa27_11df_75ce_83625975e0f9 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

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