File: IO_Dumper.pm

package info (click to toggle)
libio-all-perl 0.33-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 460 kB
  • ctags: 292
  • sloc: perl: 2,092; makefile: 46
file content (12 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package IO_Dumper;
use strict;
use IO::All '-Base';

package IO::All::Filesys;
use Data::Dumper;
sub dump {
    local $Data::Dumper::Indent = 1;
    local $Data::Dumper::Sortkeys = 1;
    $self->print(Data::Dumper::Dumper(@_));
    return $self;
}