Home / Function/ filter_entry() — tailwindcss Function Reference

filter_entry() — tailwindcss Function Reference

Architecture documentation for the filter_entry() function in walk.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  88f29c7d_46e6_f1a0_1341_0d11436fdbb4["filter_entry()"]
  1aaba1c8_3437_8f42_7482_2b7f27702c4c["filter()"]
  1aaba1c8_3437_8f42_7482_2b7f27702c4c -->|calls| 88f29c7d_46e6_f1a0_1341_0d11436fdbb4
  style 88f29c7d_46e6_f1a0_1341_0d11436fdbb4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/walk.rs lines 969–975

    pub fn filter_entry<P>(&mut self, filter: P) -> &mut WalkBuilder
    where
        P: Fn(&DirEntry) -> bool + Send + Sync + 'static,
    {
        self.filter = Some(Filter(Arc::new(filter)));
        self
    }

Subdomains

Called By

Frequently Asked Questions

What does filter_entry() do?
filter_entry() is a function in the tailwindcss codebase.
What calls filter_entry()?
filter_entry() is called by 1 function(s): filter.

Analyze Your Own Codebase

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

Try Supermodel Free