PathCommon.toString

Cast the path to a string.

mixin template PathCommon(TheStringType, alias theSeparator, alias theCaseSensitivity)
toString
const
(
OtherStringType = StringType
)
(
)
if (
isSomeString!TheStringType &&
isSomeString!(typeof(theSeparator))
)

Examples

assertEqual(PathType("C:/hello/world.exe.xml").to!StringType, "C:/hello/world.exe.xml");

Meta