2016-12-05 05:44:42 +08:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
2021-08-03 00:41:46 +08:00
|
|
|
/// The basic scalar type for all structures of `nalgebra`.
|
2016-12-05 05:44:42 +08:00
|
|
|
///
|
2021-08-03 00:41:46 +08:00
|
|
|
/// This does not make any assumption on the algebraic properties of `Self`.
|
2021-08-04 23:34:25 +08:00
|
|
|
pub trait Scalar: 'static + Clone + PartialEq + Debug {}
|
2019-12-06 06:54:17 +08:00
|
|
|
|
2021-08-04 23:34:25 +08:00
|
|
|
impl<T: 'static + Clone + PartialEq + Debug> Scalar for T {}
|