@eagleoutice/flowr - v2.15.9
    Preparing search index...

    Variable RPathConst

    RPath: {
        basename(this: void, p: string): string;
        dirname(this: void, p: string): string;
        join(this: void, ...parts: string[]): string;
        name: "RPath";
        normalize(this: void, p: string): string;
        of(this: void, p: string): string;
        relative(this: void, from: string, to: string): string;
    } = ...

    Paths as R spells them on every OS: forward slashes throughout, which R accepts on Windows as well and which survive interpolation into an R string literal, where a raw `` would escape.

    Type Declaration

    • basename: function
      • Parameters

        • this: void
        • p: string

        Returns string

    • dirname: function
      • Parameters

        • this: void
        • p: string

        Returns string

    • join: function
      • Parameters

        • this: void
        • ...parts: string[]

        Returns string

    • Readonlyname: "RPath"
    • normalize: function
      • Parameters

        • this: void
        • p: string

        Returns string

    • of: function
      • p with every backslash rewritten to a forward slash

        Parameters

        • this: void
        • p: string

        Returns string

    • relative: function
      • the path to is reached under from from, spelled so it reads as relative (./data/x.csv)

        Parameters

        • this: void
        • from: string
        • to: string

        Returns string

    location Paths as R spells them on every OS, with forward slashes throughout.