| 67 | } |
| 68 | |
| 69 | pub trait ComputeNTop { |
| 70 | fn n_top_whole<T>(&self, direction: &Direction, n: usize) -> anyhow::Result<Vec<T>> |
| 71 | where |
| 72 | T: Float + NumCast + Copy + PartialOrd + NumericOps + Send + Sync; |
| 73 | } |
| 74 | |
| 75 | pub trait ComputeTopSegmentProportions { |
| 76 | fn top_segment_proportions( |
nothing calls this directly
no outgoing calls
no test coverage detected