MCPcopy Create free account
hub / github.com/PDAL/PDAL / toString

Function toString

plugins/e57/libE57Format/src/StringFunctions.h:45–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43
44 /// @brief Convert number to decimal string
45 template <class T> std::string toString( T x )
46 {
47 static_assert( std::is_integral<T>::value || std::is_enum<T>::value ||
48 std::is_floating_point<T>::value,
49 "Numeric type required." );
50
51 std::ostringstream ss;
52 ss << x;
53 return ss.str();
54 }
55
56 /// @overload
57 inline std::string hexString( uint8_t x )

Callers 15

CompressedVectorNodeMethod · 0.70
_setNextRealMethod · 0.70
getNextInt64Method · 0.70
getNextFloatMethod · 0.70
setNextInt64Method · 0.70
checkCompatibleMethod · 0.70
DecoderFactoryMethod · 0.70
destBufferSetNewMethod · 0.70
inputProcessMethod · 0.70
inBufferShiftDownMethod · 0.70
inputProcessAlignedMethod · 0.70
checkBuffersMethod · 0.70

Calls 1

strMethod · 0.80

Tested by

no test coverage detected