symlink() — tailwindcss Function Reference
Architecture documentation for the symlink() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD c4df6a16_7c91_28e2_545c_2ae37976fd1d["symlink()"] 9493ac91_c0f7_67b4_83b5_876536246a16["symlinks()"] 9493ac91_c0f7_67b4_83b5_876536246a16 -->|calls| c4df6a16_7c91_28e2_545c_2ae37976fd1d 0cf690a4_64b9_41a7_da9a_614df11c4073["symlink_loop()"] 0cf690a4_64b9_41a7_da9a_614df11c4073 -->|calls| c4df6a16_7c91_28e2_545c_2ae37976fd1d daabf474_f723_48b1_7aee_1bb9a40511eb["same_file_system()"] daabf474_f723_48b1_7aee_1bb9a40511eb -->|calls| c4df6a16_7c91_28e2_545c_2ae37976fd1d style c4df6a16_7c91_28e2_545c_2ae37976fd1d 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
Source
Frequently Asked Questions
What does symlink() do?
symlink() is a function in the tailwindcss codebase.
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