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 576b6616_b02e_9d34_55e6_c49e1e58e735["format_byte_size()"] 4cb04b92_853a_9e1e_1bc9_d7e6a12bf2c3["fmt()"] 4cb04b92_853a_9e1e_1bc9_d7e6a12bf2c3 -->|calls| 576b6616_b02e_9d34_55e6_c49e1e58e735 style 576b6616_b02e_9d34_55e6_c49e1e58e735 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
Called By
Source
Frequently Asked Questions
What does format_byte_size() do?
format_byte_size() is a function in the tailwindcss codebase.
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