conspire 0.7.6

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
use crate::math::{Quantity, TensorRank0};
use crate::units::Time;
use std::array::from_fn;
pub const LENGTH: usize = 33;

pub fn zero_to_one<const W: usize>() -> [Quantity<Time>; W] {
    from_fn(|i| Quantity::new((i as TensorRank0) / ((W - 1) as TensorRank0)))
}