! this method converts the value to a string with a base equal 'b' */
| 3304 | this method converts the value to a string with a base equal 'b' |
| 3305 | */ |
| 3306 | void ToString(std::string & result, uint b = 10) const |
| 3307 | { |
| 3308 | return ToStringBase(result, b); |
| 3309 | } |
| 3310 | |
| 3311 | |
| 3312 | std::string ToString(uint b = 10) const |