File: NullHang.pm

package info (click to toggle)
libtext-autoformat-perl 1.750000-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 200 kB
  • sloc: perl: 745; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
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.75';
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;