MCPcopy Create free account
hub / github.com/boostorg/filesystem / wstring

Method wstring

include/boost/filesystem/path.hpp:892–898  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

890 std::string const& string(codecvt_type const&) const { return m_pathname; }
891
892 std::wstring wstring() const
893 {
894 std::wstring tmp;
895 if (!m_pathname.empty())
896 detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp);
897 return tmp;
898 }
899 std::wstring wstring(codecvt_type const& cvt) const
900 {
901 std::wstring tmp;

Callers 8

mainFunction · 0.80
check_pathFunction · 0.80
test_observersFunction · 0.80
test_imbue_localeFunction · 0.80
test_codecvt_argumentFunction · 0.80
make_long_pathFunction · 0.80
mainFunction · 0.80
generic_wstringMethod · 0.80

Calls 4

dataMethod · 0.80
convertFunction · 0.50
emptyMethod · 0.45
sizeMethod · 0.45

Tested by 5

check_pathFunction · 0.64
test_observersFunction · 0.64
test_imbue_localeFunction · 0.64
test_codecvt_argumentFunction · 0.64
make_long_pathFunction · 0.64