8 lines
108 B
Rust
8 lines
108 B
Rust
pub mod agg_fast_path;
|
|
|
|
pub trait Colletion {
|
|
type Item;
|
|
|
|
fn append(&mut self, item: Self::Item);
|
|
}
|