Adds a file to the group
(&mut self, partitioned_file: PartitionedFile)
| 432 | |
| 433 | /// Adds a file to the group |
| 434 | pub fn push(&mut self, partitioned_file: PartitionedFile) { |
| 435 | self.files.push(partitioned_file); |
| 436 | } |
| 437 | |
| 438 | /// Get the specific file statistics for the given index |
| 439 | /// If the index is None, return the `FileGroup` statistics |
no outgoing calls