format_byte_size() — tailwindcss Function Reference
Architecture documentation for the format_byte_size() function in throughput.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 1449dd8e_bbb2_d47b_d1ce_b968eb502477["format_byte_size()"] dc7647b3_89f1_fa5f_6bc9_ccda1054127b["throughput.rs"] 1449dd8e_bbb2_d47b_d1ce_b968eb502477 -->|defined in| dc7647b3_89f1_fa5f_6bc9_ccda1054127b 80019608_02b3_ca75_1541_91a34fafaec7["fmt()"] 80019608_02b3_ca75_1541_91a34fafaec7 -->|calls| 1449dd8e_bbb2_d47b_d1ce_b968eb502477 style 1449dd8e_bbb2_d47b_d1ce_b968eb502477 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/throughput.rs lines 41–52
fn format_byte_size(size: f64) -> String {
let units = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
let unit = 1000;
let mut size = size;
let mut i = 0;
while size > unit as f64 {
size /= unit as f64;
i += 1;
}
format!("{:.2} {}", size, units[i])
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does format_byte_size() do?
format_byte_size() is a function in the tailwindcss codebase, defined in crates/oxide/src/throughput.rs.
Where is format_byte_size() defined?
format_byte_size() is defined in crates/oxide/src/throughput.rs at line 41.
What calls format_byte_size()?
format_byte_size() is called by 1 function(s): fmt.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free