. =item subdump Whether to try to find the subroutine name given the reference. =item bareStringify Whether to write the non-overloaded form of the stringify-overloaded objects. =item quoteHighBit Whether to print chars with high bit set in binary or "as is". =item stopDbSignal Whether to abort printing if debugger signal flag is raised. =back Later in the life of the object the methods may be queries with get() method and set() method (which accept multiple arguments). =head2 Methods =over 4 =item dumpValue $dumper->dumpValue($value); $dumper->dumpValue([$value1, $value2]); Prints a dump to the currently selected filehandle. =item dumpValues $dumper->dumpValues($value1, $value2); Same as C<< $dumper->dumpValue([$value1, $value2]); >>. =item stringify my $dump = $dumper->stringify($value [,$noticks] ); Returns the dump of a single scalar without printing. If the second argument is true, the return value does not contain enclosing ticks. Does not handle data structures. =item dumpvars $dumper->dumpvars('my_package'); $dumper->dumpvars('my_package', 'foo', '~bar$', '!......'); The optional arguments are considered as literal strings unless they start with C<~> or C, in which case they are interpreted as regular expressions (possibly negated). The second example prints entries with names C, and also entries with names which ends on C, or are shorter than 5 chars. =item set_quote $d->set_quote('"'); Sets C and C options to suitable values for printout with the given quote char. Possible values are C, C<'> and C<">. =item set_unctrl $d->set_unctrl('unctrl'); Sets C option with checking for an invalid argument. Possible values are C and C. =item compactDump $d->compactDump(1); Sets C option. If the value is 1, sets to a reasonable big number. =item veryCompact $d->veryCompact(1); Sets C and C options simultaneously. =item set $d->set(option1 => value1, option2 => value2); =item get @values = $d->get('option1', 'option2'); =back =cut
. =item compactDump $d->compactDump(1); Sets C option. If the value is 1, sets to a reasonable big number. =item veryCompact $d->veryCompact(1); Sets C and C options simultaneously. =item set $d->set(option1 => value1, option2 => value2); =item get @values = $d->get('option1', 'option2'); =back =cut