gausplat_loader::source::file::filesType Alias Files
source pub type Files<S> = IndexMap<PathBuf, File<S>>;
Expand description
struct Files<S> { }
Opening all files matching the glob pattern.
§Examples
use gausplat_loader::source::file::{Files, Opener};
let files = Files::open("examples/data/hello-world/*").unwrap();
assert!(!files.is_empty());