Iterates over the individual segments of the path.
Returns a forward range of Segment2s.
InetPath p = "foo/bar/baz"; assert(p.bySegment2.equal([ InetPath.Segment2("foo", '/'), InetPath.Segment2("bar", '/'), InetPath.Segment2("baz") ]));
See Implementation
Iterates over the individual segments of the path.
Returns a forward range of Segment2s.