Home / Function/ get_files() — tailwindcss Function Reference

get_files() — tailwindcss Function Reference

Architecture documentation for the get_files() function in mod.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  f3a88674_0546_da95_e1d1_27bf6255e088["get_files()"]
  6fc6e572_e476_ad9b_5f94_76ef88bfc436["scan_sources()"]
  f3a88674_0546_da95_e1d1_27bf6255e088 -->|calls| 6fc6e572_e476_ad9b_5f94_76ef88bfc436
  style f3a88674_0546_da95_e1d1_27bf6255e088 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/scanner/mod.rs lines 355–362

    pub fn get_files(&mut self) -> Vec<String> {
        self.scan_sources();

        self.files
            .par_iter()
            .filter_map(|x| x.clone().into_os_string().into_string().ok())
            .collect()
    }

Domain

Subdomains

Frequently Asked Questions

What does get_files() do?
get_files() is a function in the tailwindcss codebase.
What does get_files() call?
get_files() calls 1 function(s): scan_sources.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free