From 29a347ffd408c68861a914db4efc75d8ea20a762 Mon Sep 17 00:00:00 2001
From: Hans Bolinder
Returns a character list that represents
Available options:
+A soft limit on the number of characters returned.
+Returns a character list that represents
Example:
1> lists:flatten(io_lib:write({1,[2],[3],[4,5],6,7,8,9})). "{1,[2],[3],[4,5],6,7,8,9}" 2> lists:flatten(io_lib:write({1,[2],[3],[4,5],6,7,8,9}, 5)). -"{1,[2],[3],[...],...}"+"{1,[2],[3],[...],...}" +3> lists:flatten(io_lib:write({[1,2,3],[4,5],6,7,8,9}, [{chars_limit,20}])). +"{[1,2|...],[4|...],...}"