Files
swift-mirror/stdlib/public/Cxx/cxxshim/libcxxstdlibshim.h

12 lines
406 B
C++

#include <functional>
#include <string>
/// Used for std::string conformance to Swift.Hashable
typedef std::hash<std::string> __swift_interopHashOfString;
/// Used for std::u16string conformance to Swift.Hashable
typedef std::hash<std::u16string> __swift_interopHashOfU16String;
/// Used for std::u32string conformance to Swift.Hashable
typedef std::hash<std::u32string> __swift_interopHashOfU32String;