vega
string.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "vega/types.h"
4 #include <stdint.h>
5 #include <string>
6 
7 namespace vega {
8  // Should overload with different arguments for different types
9  template <typename T>
10  std::string to_string(const T& t);
11 
12  template<>
13  std::string to_string<std::string>(const std::string& s);
14  template<>
15  std::string to_string<float>(const float& f);
16  template<>
17  std::string to_string<double>(const double& d);
18  template<>
19  std::string to_string<int8_t>(const int8_t& i);
20  template<>
21  std::string to_string<int16_t>(const int16_t& i);
22  template<>
23  std::string to_string<int32_t>(const int32_t& i);
24  template<>
25  std::string to_string<uint8_t>(const uint8_t& u);
26  template<>
27  std::string to_string<uint16_t>(const uint16_t& u);
28  template<>
29  std::string to_string<uint32_t>(const uint32_t& u);
30  template<>
31  std::string to_string<Byte>(const Byte& byte);
32  template<>
33  std::string to_string<Word>(const Word& word);
34  template<>
35  std::string to_string<Long>(const Long& l);
36 
37  template <typename T>
38  T from_string(const std::string& s);
39 
40  template<>
41  std::string from_string(const std::string& s);
42  template<>
43  float from_string(const std::string& s);
44  template<>
45  double from_string(const std::string& s);
46  template<>
47  int8_t from_string(const std::string& s);
48  template<>
49  int16_t from_string(const std::string& s);
50  template<>
51  int32_t from_string(const std::string& s);
52  template<>
53  uint8_t from_string(const std::string& s);
54  template<>
55  uint16_t from_string(const std::string& s);
56  template<>
57  uint32_t from_string(const std::string& s);
58  template<>
59  Byte from_string(const std::string& s);
60  template<>
61  Word from_string(const std::string& s);
62  template<>
63  Long from_string(const std::string& s);
64 }
65 
66 #include "vega/string_impl.h"
std::string to_string< Byte >(const Byte &byte)
std::string to_string< uint32_t >(const uint32_t &u)
std::string to_string< Word >(const Word &word)
T from_string(const std::string &s)
Definition: string_impl.h:8
std::string to_string< uint16_t >(const uint16_t &u)
std::string to_string< int16_t >(const int16_t &i)
std::string to_string< int8_t >(const int8_t &i)
std::string to_string< Long >(const Long &l)
std::string to_string< uint8_t >(const uint8_t &u)
std::string to_string(const T &t)
Definition: string_impl.h:3
std::string to_string< int32_t >(const int32_t &i)
Definition: age.h:6
std::string to_string< float >(const float &f)
std::string to_string< double >(const double &d)