diff options
author | Eric Kidd | 2016-09-15 10:29:29 -0400 |
---|---|---|
committer | Eric Kidd | 2016-09-15 10:29:29 -0400 |
commit | cae983f2cc93258c69e0f28e149d5da7802bb464 (patch) | |
tree | 1f175d26bc73dc2f58492188e19bbdbaa3bc52f7 /example/src | |
parent | b08684329bd0601550e3aa6f0926ce1e755668e8 (diff) | |
download | includedir-cae983f2cc93258c69e0f28e149d5da7802bb464.tar.gz includedir-cae983f2cc93258c69e0f28e149d5da7802bb464.tar.xz includedir-cae983f2cc93258c69e0f28e149d5da7802bb464.zip |
Allow iteration over available file names
Your example program included an unimplemented `entries` method. I
chose not to implement `entries` because iterating over it would require
decompressing any large files stored in the map.
Instead, I've provided a `file_names` API that provides just the names
of the files in the map, which the caller can look up (and potentially
decompress) if they wish.
I implemented a custom iterator wrapper to hide the implementation
details from the caller.
Diffstat (limited to 'example/src')
-rw-r--r-- | example/src/main.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/example/src/main.rs b/example/src/main.rs index 9ca782c..e1a4931 100644 --- a/example/src/main.rs +++ b/example/src/main.rs @@ -4,7 +4,10 @@ extern crate phf; include!(concat!(env!("OUT_DIR"), "/data.rs")); fn main() { - println!("{:?}", FILES.get("data/foo")) + println!("{:?}", FILES.get("data/foo")); + for name in FILES.file_names() { + println!("Found: {}", name); + } // for (k, v) in FILES.entries() { // println!("{}: {} bytes", k, v.len()); // } |