mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 18:58:44 +08:00
5 lines
72 B
Rust
5 lines
72 B
Rust
|
pub struct AveragedCollection {
|
||
|
list: Vec<i32>,
|
||
|
average: f64,
|
||
|
}
|