GenericPath.this

Constructs a path from an input range of Segments.

  1. this(string p)
  2. this(Segment segment)
  3. this(Segment2 segment)
  4. this(R segments)
    struct GenericPath(F)
    @safe
    this
    (
    R
    )
    if (
    isInputRange!R &&
    is(ElementType!R : Segment)
    )
  5. this(R segments)

Throws

Since path segments are pre-validated, this constructor does not throw an exception.

Meta