GenericPath.this - multiple declarations
Function GenericPath.this
Constructs a path from its string representation.
this
(
string p
);
Throws
A PathValidationException
is thrown if the given path string
is not valid.
Function GenericPath.this
Constructs a path from a single path segment.
This is equivalent to calling the range based constructor with a single-element range.
Function GenericPath.this
Constructs a path from an input range of Segment
s.
this(R)
(
R segments
)
if (isInputRange!R && is(ElementType!R : Segment));
Throws
Since path segments are pre-validated, this constructor does not throw an exception.