[go: up one dir, main page]

statrs 0.4.0

Statistical computing library for Rust
Documentation
1
2
3
4
5
6
use std::result;
use error::StatsError;

/// Result type for the statrs library package that returns
/// either a result type `T` or a `StatsError`
pub type Result<T> = result::Result<T, StatsError>;