2018-10-22 13:00:10 +08:00
|
|
|
use std::any::Any;
|
2017-08-03 01:37:44 +08:00
|
|
|
use std::any::TypeId;
|
2016-12-05 05:44:42 +08:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
2017-04-06 22:46:54 +08:00
|
|
|
/// The basic scalar type for all structures of `nalgebra`.
|
2016-12-05 05:44:42 +08:00
|
|
|
///
|
|
|
|
/// This does not make any assumption on the algebraic properties of `Self`.
|
2019-11-20 04:57:37 +08:00
|
|
|
pub trait Scalar: PartialEq + Debug + Any {
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-09-24 12:48:42 +08:00
|
|
|
/// Tests if `Self` the same as the type `T`
|
2017-08-14 01:52:57 +08:00
|
|
|
///
|
|
|
|
/// Typically used to test of `Self` is a f32 or a f64 with `N::is::<f32>()`.
|
2017-08-03 01:37:44 +08:00
|
|
|
fn is<T: Scalar>() -> bool {
|
|
|
|
TypeId::of::<Self>() == TypeId::of::<T>()
|
|
|
|
}
|
2019-12-06 06:54:17 +08:00
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
/// Performance hack: Clone doesn't get inlined for Copy types in debug mode, so make it inline anyway.
|
|
|
|
///
|
|
|
|
/// Downstream crates need to implement this on any Clone Scalars, as a blanket impl would conflict with with the blanket Copy impl.
|
|
|
|
fn inlined_clone(&self) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Copy + PartialEq + Debug + Any> Scalar for T {
|
|
|
|
#[inline(always)]
|
|
|
|
fn inlined_clone(&self) -> T {
|
|
|
|
*self
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|