CLHEP 2.4.6.4
C++ Class Library for High Energy Physics
Loading...
Searching...
No Matches
itos.h File Reference
#include <string>

Go to the source code of this file.

Functions

std::string itos (long i)
 

Function Documentation

◆ itos()

std::string itos ( long  i)

Definition at line 18 of file itos.cc.

18 {
19
20 std::ostringstream s;
21 s << i;
22
23 return s.str();
24
25} // itos()

Referenced by main().