NumCpp  2.5.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
num2str.hpp
Go to the documentation of this file.
1 #pragma once
29 
31 
32 #include <string>
33 
34 namespace nc
35 {
36  namespace utils
37  {
38  //============================================================================
45  template<typename dtype>
46  std::string num2str(dtype inNumber)
47  {
49 
50  return std::to_string(inNumber);
51  }
52  } // namespace utils
53 } // namespace nc
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
std::string num2str(dtype inNumber)
Definition: num2str.hpp:46
Definition: Coordinate.hpp:45