Function cfg_utils::math::to_percent

source ·
pub const fn to_percent(x: u128) -> FixedI64
Expand description

Converts the given number to percent.

§Example

use sp_arithmetic::FixedI64;
use cfg_utils::math::to_percent;

assert_eq!(to_percent(3u128), FixedI64::from_rational(3, 100));