File: NullHang.pm

package info (click to toggle)
libtext-autoformat-perl 1.740000-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 200 kB
  • ctags: 44
  • sloc: perl: 745; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package Text::Autoformat::NullHang;
$Text::Autoformat::NullHang::VERSION = '1.74';
use 5.006;
use strict;
use warnings;

sub new       { bless {}, $_[0] }
sub stringify { "" }
sub length    { 0 }
sub incr      {}
sub empty     { 1 }
sub signature     { "" }
sub fields { return 0 }
sub field { return "" }
sub val { return "" }

1;