pub trait FociSTMIterator<const N: usize>: Send + Sync {
// Required method
fn next(&mut self) -> ControlPoints<N>;
}Expand description
A trait to generate a ControlPoints for FociSTM.
Required Methods§
Sourcefn next(&mut self) -> ControlPoints<N>
fn next(&mut self) -> ControlPoints<N>
Returns the next ControlPoints.