Home / Function/ format_byte_size() — tailwindcss Function Reference

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
  3c2fa787_59f9_bd22_4b49_767630b4695f["format_byte_size()"]
  80a9febe_a83b_9526_3a2d_995229645d34["fmt()"]
  80a9febe_a83b_9526_3a2d_995229645d34 -->|calls| 3c2fa787_59f9_bd22_4b49_767630b4695f
  style 3c2fa787_59f9_bd22_4b49_767630b4695f 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

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