eq() — tailwindcss Function Reference
Architecture documentation for the eq() function in fast_skip.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD ffb33f62_dccc_6cfe_7658_f128aa23a139["eq()"] 84476f7e_6368_7bc3_7b21_bb4e68610620["is_ascii_whitespace()"] 84476f7e_6368_7bc3_7b21_bb4e68610620 -->|calls| ffb33f62_dccc_6cfe_7658_f128aa23a139 style ffb33f62_dccc_6cfe_7658_f128aa23a139 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/fast_skip.rs lines 48–54
fn eq(input: [u8; STRIDE], val: u8) -> Mask {
let mut res = [false; STRIDE];
for n in 0..STRIDE {
res[n] = input[n] == val
}
res
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does eq() do?
eq() is a function in the tailwindcss codebase.
What calls eq()?
eq() is called by 1 function(s): is_ascii_whitespace.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free