5 lines
78 B
Rust
Raw Normal View History

2024-08-23 13:00:22 -07:00
pub struct Fixed<I,Frac>{
bits:I,
phantom:std::marker::PhantomData<Frac>,
}