File: Vector.pm

package info (click to toggle)
wml 2.0.8-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,548 kB
  • ctags: 4,917
  • sloc: ansic: 46,574; perl: 13,886; sh: 6,849; makefile: 2,212; yacc: 122
file content (33 lines) | stat: -rw-r--r-- 986 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

###############################################################################
##                                                                           ##
##    Copyright (c) 1995 - 2000 by Steffen Beyer.                            ##
##    All rights reserved.                                                   ##
##                                                                           ##
##    This package is free software; you can redistribute it                 ##
##    and/or modify it under the same terms as Perl itself.                  ##
##                                                                           ##
###############################################################################

package Bit::Vector;

use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION @CONFIG);

require Exporter;
require DynaLoader;

@ISA = qw(Exporter DynaLoader);

@EXPORT = qw();

@EXPORT_OK = qw();

$VERSION = '6.0';

bootstrap Bit::Vector $VERSION;

1;

__END__