iter method

Iter<String> iter()

Produces an iterator over the path’s components viewed as Strings

Implementation

Iter<String> iter() => isWindows ? WindowsPath(_string).iter() : UnixPath(_string).iter();