Data::Dumper update
[p5sagit/p5-mst-13.2.git] / ext / Data / Dumper / Todo
CommitLineData
823edd99 1=head1 NAME
2
3TODO - seeds germane, yet not germinated
4
5=head1 DESCRIPTION
6
7The following functionality will be supported in the next few releases.
8
9=over 4
10
11=item $Data::Dumper::Maxdepth I<or> $I<OBJ>->Maxdepth(I<NEWVAL>)
12
13Depth beyond which we don't venture into a structure. Has no effect when
14C<Data::Dumper::Purity> is set. (useful in debugger when we often don't
15want to see more than enough).
16
17=item $Data::Dumper::Expdepth I<or> $I<OBJ>->Expdepth(I<NEWVAL>)
18
19Dump contents explicitly up to a certain depth and then use names for
20cross-referencing identical references. (useful in debugger, in situations
21where we don't care so much for cross-references).
22
23=item Make C<Dumpxs()> honor C<$Useqq>
24
25=item Fix formatting when Terse is set and Indent >= 2
26
27=item Output space after '\' (ref constructor) for high enough Indent
28
29=item Implement redesign that allows various backends (Perl, Lisp,
30some-binary-data-format, graph-description-languages, etc.)
31
7820172a 32=item Dump traversal in breadth-first order
33
823edd99 34=back