You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2023. It is now read-only.
I'm not really happy with this name.
Maybe we should directly convert this to a `Vec`? And skip all files we
can't read? I think that currently, you'll write this a lot:
```rust
let files = glob("*.txt")?.filter_map(|x| x.ok()).collect();
```
Fixes#1 for now
I'm not really happy with this name.
Maybe we should directly convert this to a `Vec`? And skip all files we
can't read? I think that currently, you'll write this a lot:
```rust
let files = glob("*.txt")?.filter_map(|x| x.ok()).collect();
```
Fixes#1 for now
Do typical Rust CLI apps use glob-style queries to access files and directories?
http://docs.rs/glob
The text was updated successfully, but these errors were encountered: