2018-09-20 20:23:31 +08:00
|
|
|
use na::{self, Real};
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-10-16 22:48:31 +08:00
|
|
|
/// The Euler constant.
|
|
|
|
///
|
|
|
|
/// This is a shorthand alias for [`euler`](fn.euler.html).
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn e<N: Real>() -> N {
|
|
|
|
N::e()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-10-16 22:48:31 +08:00
|
|
|
/// The Euler constant.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn euler<N: Real>() -> N {
|
|
|
|
N::e()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `4 / pi`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn four_over_pi<N: Real>() -> N {
|
|
|
|
na::convert::<_, N>(4.0) / N::pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns the golden ratio.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn golden_ratio<N: Real>() -> N {
|
|
|
|
(N::one() + root_five()) / na::convert(2.0)
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 23:36:08 +08:00
|
|
|
/// Returns `pi / 2`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn half_pi<N: Real>() -> N {
|
|
|
|
N::frac_pi_2()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 23:36:08 +08:00
|
|
|
/// Returns `ln(ln(2))`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`ln_ten`](fn.ln_ten.html)
|
|
|
|
/// * [`ln_two`](fn.ln_two.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn ln_ln_two<N: Real>() -> N {
|
|
|
|
N::ln_2().ln()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `ln(10)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`ln_ln_two`](fn.ln_ln_two.html)
|
|
|
|
/// * [`ln_two`](fn.ln_two.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn ln_ten<N: Real>() -> N {
|
|
|
|
N::ln_10()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `ln(2)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`ln_ln_two`](fn.ln_ln_two.html)
|
|
|
|
/// * [`ln_ten`](fn.ln_ten.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn ln_two<N: Real>() -> N {
|
|
|
|
N::ln_2()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `1`.
|
2018-09-23 22:22:00 +08:00
|
|
|
pub use na::one;
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `1 / pi`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn one_over_pi<N: Real>() -> N {
|
|
|
|
N::frac_1_pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `1 / sqrt(2)`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn one_over_root_two<N: Real>() -> N {
|
|
|
|
N::one() / root_two()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `1 / (2pi)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn one_over_two_pi<N: Real>() -> N {
|
|
|
|
N::frac_1_pi() * na::convert(0.5)
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `pi / 4`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn quarter_pi<N: Real>() -> N {
|
|
|
|
N::frac_pi_4()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `sqrt(5)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`root_three`](fn.root_three.html)
|
|
|
|
/// * [`root_two`](fn.root_two.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_five<N: Real>() -> N {
|
|
|
|
na::convert::<_, N>(5.0).sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `sqrt(pi / 2)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_half_pi<N: Real>() -> N {
|
|
|
|
(N::pi() / na::convert(2.0)).sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `sqrt(ln(4))`.
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_ln_four<N: Real>() -> N {
|
2018-09-23 21:59:24 +08:00
|
|
|
na::convert::<_, N>(4.0).ln().sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns the square root of pi.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_pi<N: Real>() -> N {
|
|
|
|
N::pi().sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns the square root of 3.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`root_five`](fn.root_five.html)
|
|
|
|
/// * [`root_two`](fn.root_two.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_three<N: Real>() -> N {
|
|
|
|
na::convert::<_, N>(3.0).sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns the square root of 2.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`root_five`](fn.root_five.html)
|
|
|
|
/// * [`root_three`](fn.root_three.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_two<N: Real>() -> N {
|
2019-03-23 21:29:07 +08:00
|
|
|
// FIXME: there should be a crate::sqrt_2() on the Real trait.
|
2018-09-20 20:23:31 +08:00
|
|
|
na::convert::<_, N>(2.0).sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns the square root of 2pi.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn root_two_pi<N: Real>() -> N {
|
|
|
|
N::two_pi().sqrt()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 23:36:08 +08:00
|
|
|
/// Returns `1 / 3`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`two_thirds`](fn.two_thirds.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn third<N: Real>() -> N {
|
2018-09-23 21:59:24 +08:00
|
|
|
na::convert(1.0 / 3.0)
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `3 / (2pi)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn three_over_two_pi<N: Real>() -> N {
|
|
|
|
na::convert::<_, N>(3.0) / N::two_pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `2 / pi`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn two_over_pi<N: Real>() -> N {
|
|
|
|
N::frac_2_pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `2 / sqrt(pi)`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_pi`](fn.two_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn two_over_root_pi<N: Real>() -> N {
|
2018-09-23 21:59:24 +08:00
|
|
|
N::frac_2_sqrt_pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `2pi`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`four_over_pi`](fn.four_over_pi.html)
|
|
|
|
/// * [`half_pi`](fn.half_pi.html)
|
|
|
|
/// * [`one_over_pi`](fn.one_over_pi.html)
|
|
|
|
/// * [`one_over_two_pi`](fn.one_over_two_pi.html)
|
|
|
|
/// * [`pi`](fn.pi.html)
|
|
|
|
/// * [`quarter_pi`](fn.quarter_pi.html)
|
|
|
|
/// * [`root_half_pi`](fn.root_half_pi.html)
|
|
|
|
/// * [`root_pi`](fn.root_pi.html)
|
|
|
|
/// * [`root_two_pi`](fn.root_two_pi.html)
|
|
|
|
/// * [`three_over_two_pi`](fn.three_over_two_pi.html)
|
|
|
|
/// * [`two_over_pi`](fn.two_over_pi.html)
|
|
|
|
/// * [`two_over_root_pi`](fn.two_over_root_pi.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn two_pi<N: Real>() -> N {
|
|
|
|
N::two_pi()
|
2018-09-20 16:50:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `2 / 3`.
|
2018-10-03 19:28:07 +08:00
|
|
|
///
|
|
|
|
/// # See also:
|
|
|
|
///
|
|
|
|
/// * [`third`](fn.third.html)
|
2018-09-20 20:23:31 +08:00
|
|
|
pub fn two_thirds<N: Real>() -> N {
|
|
|
|
na::convert(2.0 / 3.0)
|
|
|
|
}
|
2018-09-20 16:50:34 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `0`.
|
2018-10-03 19:28:07 +08:00
|
|
|
pub use na::zero;
|