MCPcopy Create free account
hub / github.com/apache/datafusion / files

Method files

datafusion/datasource/src/file_groups.rs:412–414  ·  view source on GitHub ↗

Returns a slice of the files in this group

(&self)

Source from the content-addressed store, hash-verified

410
411 /// Returns a slice of the files in this group
412 pub fn files(&self) -> &[PartitionedFile] {
413 &self.files
414 }
415
416 pub fn iter(&self) -> impl Iterator<Item = &PartitionedFile> {
417 self.files.iter()

Calls

no outgoing calls