PathCommon.toString

Cast the path to a string.

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

Examples

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

Meta