MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / stringify

Function stringify

Bcore/src/main/cpp/Dobby/tests/catch.hpp:850–852  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

848// This function dispatches all stringification requests inside of Catch.
849// Should be preferably called fully qualified, like ::Catch::Detail::stringify
850template <typename T> std::string stringify(const T &e) {
851 return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e);
852}
853
854template <typename E> std::string convertUnknownEnumToString(E e) {
855 return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e));

Callers 15

convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
rangeToStringFunction · 0.85
convertMethod · 0.85
convertMethod · 0.85
printMethod · 0.85
convertMethod · 0.85
ApproxClass · 0.85

Calls 1

convertFunction · 0.85

Tested by

no test coverage detected