path
Types dealing with various kinds of resource paths
Types
type::DOSPath
type::DOSPathA type representing a DOS path using a '\' backslash as delimiter
using DOSPath = type::Path;type::Path
type::PathA generic type representing a path with an arbitrary delimiter
<Delimiter>: The delimiter sequence used to separate two path segments
struct Path<auto Delimiter> { ... } [[format]];type::PathSegment
type::PathSegmentType representing a single path segment. Use the Path type instead of using this on its own
<Delimiter>: The delimiter sequence used to separate two path segments
struct PathSegment<auto Delimiter> { ... } [[sealed, format]];type::UnixPath
type::UnixPathA type representing a Unix path using a '/' forward slash as delimiter
using UnixPath = type::Path;Last updated
Was this helpful?