Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/xampp/perl/vendor/lib/Class/Load/ |
package Class::Load::XS; { $Class::Load::XS::VERSION = '0.06'; } use strict; use warnings; use Class::Load 0.20; use XSLoader; XSLoader::load( __PACKAGE__, exists $Class::Load::XS::{VERSION} ? ${ $Class::Load::XS::{VERSION} } : (), ); 1; # ABSTRACT: XS implementation of parts of Class::Load =pod =head1 NAME Class::Load::XS - XS implementation of parts of Class::Load =head1 VERSION version 0.06 =head1 SYNOPSIS use Class::Load; =head1 DESCRIPTION This module provides an XS implementation for portions of L<Class::Load>. See L<Class::Load> for API details. =head1 AUTHOR Dave Rolsky <autarch@urth.org> =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2012 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut __END__