Name : perl-BFD
| |
Version : 0.31
| Vendor : obs://build_opensuse_org/devel:languages:perl
|
Release : lp154.8.1
| Date : 2023-01-27 16:12:49
|
Group : Development/Libraries/Perl
| Source RPM : perl-BFD-0.31-lp154.8.1.src.rpm
|
Size : 0.01 MB
| |
Packager : https://www_suse_com/
| |
Summary : Impromptu dumping of data structures for debugging purposes
|
Description :
Allows for impromptu dumping of output to STDERR. Useful when you want to take a peek at a nest Perl data structure by emitting (relatively) nicely formatted output with filename and line number prefixed to each line.
Basically,
use BFD;d $foo;
is shorthand for
use Data::Dumper; local $Data::Dumper::Indent = 1; local $Data::Dumper::Quotekeys = 0; local $Data::Dumper::Terse = 1; local $Data::Dumper::Sortkeys = 1; my $msg = Dumper( $foo ); $msg =~ s/^/$where: /mg; warn $msg;
I use this incantation soooo often that a TLA version is warranted. YMMV.
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/perl:/CPAN-B/15.4/noarch |