示例#1
0
文件: json.hpp 项目: dbarobin/steem
 static string   to_pretty_string( const T& v, output_formatting format = stringify_large_ints_and_doubles )
 {
    return to_pretty_string( variant(v), format );
 }
示例#2
0
文件: json.hpp 项目: bitshares/fc
 static string   to_pretty_string( const T& v, output_formatting format = stringify_large_ints_and_doubles, uint32_t max_depth = DEFAULT_MAX_RECURSION_DEPTH )
 {
    return to_pretty_string( variant(v, max_depth), format, max_depth );
 }
示例#3
0
文件: json.hpp 项目: DerKorb/fc
 static string   to_pretty_string( const T& v ) 
 {
    return to_pretty_string( variant(v) );
 }