wasm-bindgen-test 0.3.68

Internal testing crate for wasm-bindgen
Documentation
//! Mixed bootstrap

use super::super::float::Float;
use super::super::tuple::{Tuple, TupledDistributionsBuilder};
use super::Resamples;
use super::Sample;

use alloc::vec::Vec;

/// Performs a *mixed* two-sample bootstrap
pub fn bootstrap<A, T, S>(
    a: &Sample<A>,
    b: &Sample<A>,
    nresamples: usize,
    statistic: S,
) -> T::Distributions
where
    A: Float,
    S: Fn(&Sample<A>, &Sample<A>) -> T + Sync,
    T: Tuple + Send,
    T::Distributions: Send,
    T::Builder: Send,
{
    let n_a = a.len();
    let n_b = b.len();
    let mut c = Vec::with_capacity(n_a + n_b);
    c.extend_from_slice(a);
    c.extend_from_slice(b);
    let c = Sample::new(&c);

    let mut resamples = Resamples::new(c);
    (0..nresamples)
        .map(|_| {
            let resample = resamples.next();
            let a: &Sample<A> = Sample::new(&resample[..n_a]);
            let b: &Sample<A> = Sample::new(&resample[n_a..]);

            statistic(a, b)
        })
        .fold(T::Builder::new(0), |mut sub_distributions, sample| {
            sub_distributions.push(sample);
            sub_distributions
        })
        .complete()
}