Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
FFI /
Platypus /
Record /
[ HOME SHELL ]
Name
Size
Permission
Action
Meta.pm
2.52
KB
-rw-rw-rw-
TieArray.pm
2.61
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TieArray.pm
package FFI::Platypus::Record::TieArray; use strict; use warnings; use Carp qw( croak ); # ABSTRACT: Tied array interface for record array members our $VERSION = '1.31'; # VERSION sub TIEARRAY { my $class = shift; bless [ @_ ], $class; } sub FETCH { my($self, $key) = @_; my($obj, $member) = @$self; $obj->$member($key); } sub STORE { my($self, $key, $value) = @_; my($obj, $member) = @$self; $obj->$member($key, $value); } sub FETCHSIZE { my($self) = @_; $self->[2]; } sub CLEAR { my($self) = @_; my($obj, $member) = @$self; $obj->$member([]); } sub EXTEND { my($self, $count) = @_; croak "tried to extend a fixed length array" if $count > $self->[2]; } 1; __END__ =pod =encoding UTF-8 =head1 NAME FFI::Platypus::Record::TieArray - Tied array interface for record array members =head1 VERSION version 1.31 =head1 SYNOPSIS package Foo; use FFI::Platypus::Record; use FFI::Platypus::Record::TieArray; record_layout(qw( int[20] _bar )); sub bar { my($self, $arg) = @_; $self->_bar($arg) if ref($arg) eq ' ARRAY'; tie my @list, 'FFI::Platypus::Record::TieArray', $self, '_bar', 20; } package main; my $foo = Foo->new; my $bar5 = $foo->bar->[5]; # get the 5th element of the bar array $foo->bar->[5] = 10; # set the 5th element of the bar array @{ $foo->bar } = (); # set all elements in bar to 0 @{ $foo->bar } = (1..5); # set the first five elements of the bar array =head1 DESCRIPTION B<WARNING>: This module is considered EXPERIMENTAL. It may go away or be changed in incompatible ways, possibly without notice, but not without a good reason. This class provides a tie interface for record array members. In the future a short cut for using this with L<FFI::Platypus::Record> directly may be provided. =head1 SEE ALSO =over 4 =item L<FFI::Platypus> The main Platypus documentation. =item L<FFI::Platypus::Record> Documentation on Platypus records. =back =head1 AUTHOR Author: Graham Ollis E<lt>plicease@cpan.orgE<gt> Contributors: Bakkiaraj Murugesan (bakkiaraj) Dylan Cali (calid) pipcet Zaki Mughal (zmughal) Fitz Elliott (felliott) Vickenty Fesunov (vyf) Gregor Herrmann (gregoa) Shlomi Fish (shlomif) Damyan Ivanov Ilya Pavlov (Ilya33) Petr Pisar (ppisar) Mohammad S Anwar (MANWAR) Håkon Hægland (hakonhagland, HAKONH) Meredith (merrilymeredith, MHOWARD) Diab Jerius (DJERIUS) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2015,2016,2017,2018,2019,2020 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
Close