sources/mystring.h

changeset 66
bd28a5730fd0
parent 60
268721e6be20
child 69
eb4c25284a19
equal deleted inserted replaced
65:8f47c682e248 66:bd28a5730fd0
103 METHOD to_int (bool* ok = nullptr, int base = 10) const -> long; 103 METHOD to_int (bool* ok = nullptr, int base = 10) const -> long;
104 METHOD trim (int n) -> void; 104 METHOD trim (int n) -> void;
105 METHOD to_uppercase() const -> String; 105 METHOD to_uppercase() const -> String;
106 METHOD word_position (int n) const -> int; 106 METHOD word_position (int n) const -> int;
107 107
108 static METHOD from_number (short int a) -> String;
108 static METHOD from_number (int a) -> String; 109 static METHOD from_number (int a) -> String;
109 static METHOD from_number (long a) -> String; 110 static METHOD from_number (long int a) -> String;
110 static METHOD from_number (unsigned long a) -> String; 111 static METHOD from_number (unsigned short int a) -> String;
112 static METHOD from_number (unsigned int a) -> String;
113 static METHOD from_number (unsigned long int a) -> String;
111 static METHOD from_number (double a) -> String; 114 static METHOD from_number (double a) -> String;
112 115
113 METHOD operator+ (const String& data) const -> String; 116 METHOD operator+ (const String& data) const -> String;
114 METHOD operator+ (const char* data) const -> String; 117 METHOD operator+ (const char* data) const -> String;
115 inline METHOD operator+ (int num) const -> String; 118 inline METHOD operator+ (int num) const -> String;

mercurial