Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / perl5 / ext / Data / Dumper / Todo
1 =head1 NAME
2
3 TODO - seeds germane, yet not germinated
4
5 =head1 DESCRIPTION
6
7 The 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
13 Depth beyond which we don't venture into a structure.  Has no effect when
14 C<Data::Dumper::Purity> is set.  (useful in debugger when we often don't
15 want to see more than enough).
16
17 =item  $Data::Dumper::Expdepth I<or> $I<OBJ>->Expdepth(I<NEWVAL>)
18
19 Dump contents explicitly up to a certain depth and then use names for
20 cross-referencing identical references.  (useful in debugger, in situations
21 where 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,
30 some-binary-data-format, graph-description-languages, etc.)
31
32 =item Dump traversal in breadth-first order
33
34 =back