referrerpolicy=no-referrer-when-downgrade

Trait polkadot_sdk_frame::arithmetic::Normalizable

pub trait Normalizable<T> {
    // Required method
    fn normalize(&self, targeted_sum: T) -> Result<Vec<T>, &'static str>;
}
Expand description

A collection-like object that is made of values of type T and can normalize its individual values around a centric point.

Note that the order of items in the collection may affect the result.

Required Methods§

fn normalize(&self, targeted_sum: T) -> Result<Vec<T>, &'static str>

Normalize self around targeted_sum.

Only returns Ok if the new sum of results is guaranteed to be equal to targeted_sum. Else, returns an error explaining why it failed to do so.

Implementations on Foreign Types§

§

impl Normalizable<u8> for Vec<u8>

§

fn normalize(&self, targeted_sum: u8) -> Result<Vec<u8>, &'static str>

§

impl Normalizable<u16> for Vec<u16>

§

fn normalize(&self, targeted_sum: u16) -> Result<Vec<u16>, &'static str>

§

impl Normalizable<u32> for Vec<u32>

§

fn normalize(&self, targeted_sum: u32) -> Result<Vec<u32>, &'static str>

§

impl Normalizable<u64> for Vec<u64>

§

fn normalize(&self, targeted_sum: u64) -> Result<Vec<u64>, &'static str>

§

impl Normalizable<u128> for Vec<u128>

§

fn normalize(&self, targeted_sum: u128) -> Result<Vec<u128>, &'static str>

§

impl<P> Normalizable<P> for Vec<P>
where P: PerThing,

§

fn normalize(&self, targeted_sum: P) -> Result<Vec<P>, &'static str>

Implementors§