Struct criterion_stats::bivariate::Data [] [src]

pub struct Data<'a, X, Y>(_, _)
where
    X: 'a,
    Y: 'a
;

Bivariate (X, Y) data

Invariants:

  • No NaNs in the data
  • At least two data points in the set

Methods

impl<'a, X, Y> Data<'a, X, Y>
[src]

[src]

Returns the length of the data set

[src]

Checks whether the data set is empty

Important traits for Pairs<'a, X, Y>
[src]

Iterate over the data set

impl<'a, X, Y> Data<'a, X, Y> where
    X: Float,
    Y: Float, 
[src]

[src]

Creates a new data set from two existing slices

[src]

Returns the bootstrap distributions of the parameters estimated by the statistic

  • Multi-threaded
  • Time: O(nresamples)
  • Memory: O(nresamples)

[src]

Returns a view into the X data

[src]

Returns a view into the Y data

Trait Implementations

impl<'a, X, Y> Copy for Data<'a, X, Y>
[src]

impl<'a, X, Y> Clone for Data<'a, X, Y>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a, X, Y> Send for Data<'a, X, Y> where
    X: Sync,
    Y: Sync

impl<'a, X, Y> Sync for Data<'a, X, Y> where
    X: Sync,
    Y: Sync