Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
Unicode /
Delete
Unzip
Name
Size
Permission
Date
Action
LineBreak
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
GCString.pm
956
B
-rw-rw-rw-
2018-12-29 06:15
GCString.pod
6.21
KB
-rw-rw-rw-
2017-04-11 13:53
LineBreak.pm
6.28
KB
-rw-rw-rw-
2018-12-29 07:07
LineBreak.pod
26.53
KB
-rw-rw-rw-
2018-03-29 16:34
UTF8.pm
346
B
-rw-rw-rw-
2017-04-12 01:35
UTF8.pod
6.34
KB
-rw-rw-rw-
2017-04-09 20:49
Save
Rename
#-*-perl-*- package Unicode::GCString; require 5.008; =encoding utf-8 =cut ### Pragmas: use strict; use warnings; use vars qw($VERSION @EXPORT_OK @ISA); ### Exporting: use Exporter; our @EXPORT_OK = qw(); our %EXPORT_TAGS = ('all' => [@EXPORT_OK]); ### Inheritance: our @ISA = qw(Exporter); ### Other modules: use Unicode::LineBreak; ### Globals # The package version our $VERSION = '2013.10'; use overload '@{}' => \&as_arrayref, '${}' => \&as_scalarref, '""' => \&as_string, '.' => \&concat, #XXX'.=' => \&concat, #FIXME:segfault 'cmp' => \&cmp, '<>' => \&next, ; sub new { my $class = shift; my $self; if (scalar @_ <= 2) { $self = __PACKAGE__->_new(@_); } else { my $str = shift; my $lb = Unicode::LineBreak->new(@_); $self = __PACKAGE__->_new($str, $lb); } bless $self, $class; } sub as_arrayref { my @a = shift->as_array; return \@a; } 1;