Skip to main content

format_percent_fixed

Function format_percent_fixed 

Source
pub fn format_percent_fixed(value: f64, decimals: usize) -> String
Expand description

Format a percentage with fixed decimal places.

ยงExamples

use batuta_common::fmt::format_percent_fixed;
assert_eq!(format_percent_fixed(45.333, 2), "45.33%");