The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PDLA::Lite - minimum PDLA module OO loader

DESCRIPTION

Loads the smallest possible set of modules for PDLA to work, without importing an functions in to the current namespace. This is the absolute minimum set for PDLA.

Although no functions are defined (apart from a few always exported by PDLA::Core) you can still use method syntax, viz:

  $x->wibble(42);

SYNOPSIS

 use PDLA::Lite; # Is equivalent to the following:

   use PDLA::Core '';
   use PDLA::Ops '';
   use PDLA::Primitive '';
   use PDLA::Ufunc '';
   use PDLA::Basic '';
   use PDLA::Slices '';
   use PDLA::Bad '';
   use PDLA::Version;
   use PDLA::Lvalue;