You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consensus::model() for example, using I: IntoIterator instead of I: Iterator allows users to pass a vector directly. It gives us some convenient to avoid writing data.into_iter().
let data = vec![a, b, c];
consensus.model(&estimator, data);