symlink() — tailwindcss Function Reference
Architecture documentation for the symlink() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323["symlink()"] b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"] ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323 -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565 33218f39_f329_0a0c_2eed_b1e7f7195f4f["symlinks()"] 33218f39_f329_0a0c_2eed_b1e7f7195f4f -->|calls| ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323 fdb0b620_8068_84db_6f37_94e73040690a["symlink_loop()"] fdb0b620_8068_84db_6f37_94e73040690a -->|calls| ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323 a9ee3ce7_a88e_113e_778c_1bf1eac0ce02["same_file_system()"] a9ee3ce7_a88e_113e_778c_1bf1eac0ce02 -->|calls| ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323 style ae24c7c6_15e4_7ae8_f43d_7fb2fe2b8323 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2058–2061
fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) {
use std::os::unix::fs::symlink;
symlink(src, dst).unwrap();
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does symlink() do?
symlink() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is symlink() defined?
symlink() is defined in crates/ignore/src/walk.rs at line 2058.
What calls symlink()?
symlink() is called by 3 function(s): same_file_system, symlink_loop, symlinks.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free