Type Definition diffgeom::tensors::Scalar
[−]
[src]
type Scalar<T> = Tensor<T, ()>;
A scalar type, which is a tensor with rank 0.
This is de facto just a number, so it implements Deref
and DerefMut
into f64
.