MCPcopy Create free account
hub / github.com/fmtlib/fmt / path

Class path

include/fmt/std.h:354–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

352};
353
354class path : public std::filesystem::path {
355 public:
356 auto display_string() const -> std::string {
357 const std::filesystem::path& base = *this;
358 return fmt::format(FMT_STRING("{}"), base);
359 }
360 auto system_string() const -> std::string { return string(); }
361
362 auto generic_display_string() const -> std::string {
363 const std::filesystem::path& base = *this;
364 return fmt::format(FMT_STRING("{:g}"), base);
365 }
366 auto generic_system_string() const -> std::string { return generic_string(); }
367};
368
369#endif // FMT_CPP_LIB_FILESYSTEM
370

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68