MCPcopy Create free account
hub / github.com/boutproject/BOUT-dev / to_string

Function to_string

include/bout/sys/uuid.h:570–574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

568template <class CharT = char, class Traits = std::char_traits<CharT>,
569 class Allocator = std::allocator<CharT>>
570inline std::basic_string<CharT, Traits, Allocator> to_string(uuid const& id) {
571 std::basic_stringstream<CharT, Traits, Allocator> sstr;
572 sstr << id;
573 return sstr.str();
574}
575
576inline void swap(uuids::uuid& lhs, uuids::uuid& rhs) noexcept { lhs.swap(rhs); }
577

Callers 5

FCIMapMethod · 0.85
createRunIDMethod · 0.85
TESTFunction · 0.85
mainFunction · 0.85
operator()Method · 0.85

Calls 1

strMethod · 0.45

Tested by 1

TESTFunction · 0.68