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