Struct rv::data::BernoulliSuffStat[][src]

pub struct BernoulliSuffStat {
    pub n: usize,
    pub k: usize,
}

Fields

Methods

impl BernoulliSuffStat
[src]

Trait Implementations

impl Debug for BernoulliSuffStat
[src]

Formats the value using the given formatter. Read more

impl Clone for BernoulliSuffStat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for BernoulliSuffStat
[src]

Returns the "default value" for a type. Read more

impl SuffStat<bool> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<u8> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<u16> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<u32> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<u64> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<usize> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<i8> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<i16> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<i32> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<i64> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

impl SuffStat<isize> for BernoulliSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

Auto Trait Implementations