line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
2
|
|
|
|
|
|
|
## Class Generic - ~/lib/Class/Finfo.pm |
3
|
|
|
|
|
|
|
## Version v0.1.3 |
4
|
|
|
|
|
|
|
## Copyright(c) 2022 DEGUEST Pte. Ltd. |
5
|
|
|
|
|
|
|
## Author: Jacques Deguest <jack@deguest.jp> |
6
|
|
|
|
|
|
|
## Created 2022/02/27 |
7
|
|
|
|
|
|
|
## Modified 2022/03/07 |
8
|
|
|
|
|
|
|
## All rights reserved |
9
|
|
|
|
|
|
|
## |
10
|
|
|
|
|
|
|
## This program is free software; you can redistribute it and/or modify it |
11
|
|
|
|
|
|
|
## under the same terms as Perl itself. |
12
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
13
|
|
|
|
|
|
|
BEGIN |
14
|
|
|
|
|
|
|
{ |
15
|
|
|
|
|
|
|
use strict; |
16
|
2
|
|
|
2
|
|
1343
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
47
|
|
17
|
2
|
|
|
2
|
|
8
|
use parent qw( Module::Generic::Finfo ); |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
44
|
|
18
|
2
|
|
|
2
|
|
14
|
# So those package variable can be queried |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
7
|
|
19
|
|
|
|
|
|
|
our @EXPORT_OK = @Module::Generic::Finfo::EXPORT_OK; |
20
|
2
|
|
|
2
|
|
190
|
our %EXPORT_TAGS = %Module::Generic::Finfo::EXPORT_TAGS; |
21
|
2
|
|
|
|
|
8
|
our @EXPORT = @Module::Generic::Finfo::EXPORT; |
22
|
2
|
|
|
|
|
4
|
our $VERSION = 'v0.1.3'; |
23
|
2
|
|
|
|
|
85
|
}; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
{ |
26
|
|
|
|
|
|
|
Module::Generic::Finfo->export_to_level( 1, @_ ); |
27
|
|
|
|
|
|
|
} |
28
|
2
|
|
|
2
|
|
176
|
|
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=encoding utf8 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 NAME |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Class::Finfo - A Finfo Object Class |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SYNOPSIS |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
use Class::Finfo; |
41
|
|
|
|
|
|
|
my $bool = Class::Finfo->new; |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 VERSION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
v0.1.3 |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 DESCRIPTION |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This package provides a versatile file information class object for the manipulation and chaining of file information. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
See L<Module::Generic::Finfo> for more information. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 SEE ALSO |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
L<Class::Generic>, L<Class::Array>, L<Class::Scalar>, L<Class::Number>, L<Class::Boolean>, L<Class::Assoc>, L<Class::File>, L<Class::DateTime>, L<Class::Exception>, L<Class::Finfo>, L<Class::NullChain> |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 AUTHOR |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Jacques Deguest E<lt>F<jack@deguest.jp>E<gt> |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Copyright (c) 2022 DEGUEST Pte. Ltd. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
You can use, copy, modify and redistribute this package and associated |
66
|
|
|
|
|
|
|
files under the same terms as Perl itself. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |