Comment on page
path
Types dealing with various kinds of resource paths
A type representing a DOS path using a '' backslash as delimeter
using DOSPath = type::Path;
A generic type representing a path with an arbitrary delimeter
<Delimeter>
: The delimeter sequence used to separate two path segments
struct Path<auto Delimeter> { ... } [[format]];
Type representing a single path segment. Use the
Path
type instead of using this on its own<Delimeter>
: The delimeter sequence used to separate two path segments
struct PathSegment<auto Delimeter> { ... } [[sealed, format]];
A type representing a Unix path using a '/' forwardslash as delimeter
using UnixPath = type::Path;
Last modified 8mo ago