uce/site/doc/pages/var_dump.txt
2026-06-16 23:02:45 +00:00

25 lines
558 B
Plaintext

:sig
String var_dump(StringMap t, String prefix = "", String postfix = "\n")
String var_dump(StringList t, String prefix = "", String postfix = "\n")
String var_dump(DValue t, String prefix = "", String postfix = "\n")
:params
t : object to be dumped into a string
return value : string containing a human-friendly representation of 't'
:see
>types
0_DValue
0_StringMap
json_encode
print
:content
Returns a string representation of `t` intended for debugging.
:example
DValue user;
user["name"] = "Ada";
user["role"] = "engineer";
print(var_dump(user));