Struct extra::glob::GlobIterator

pub struct GlobIterator {
    priv root: std::path::PosixPath,
    priv dir_patterns: ~[Pattern],
    priv options: MatchOptions,
    priv todo: ~[std::path::PosixPath],
}

An iterator that yields Paths from the filesystem that match a particular pattern - see the glob function for more details.

Trait Implementations

impl std::iter::Iterator for GlobIterator

fn next(&mut self) -> std::option::Option