1Lite(3) User Contributed Perl Documentation Lite(3)
2
3
4
6 PDL::Lite - minimum PDL module OO loader
7
9 Loads the smallest possible set of modules for PDL to work, without
10 importing an functions in to the current namespace. This is the abso‐
11 lute minimum set for PDL.
12
13 Although no functions are defined (apart from a few always exported by
14 PDL::Core) you can still use method syntax, viz:
15
16 $x->wibble(42);
17
19 use PDL::Lite; # Is equivalent to the following:
20
21 use PDL::Core '';
22 use PDL::Ops '';
23 use PDL::Primitive '';
24 use PDL::Ufunc '';
25 use PDL::Basic '';
26 use PDL::Slices '';
27 use PDL::Bad '';
28 use PDL::Version;
29 use PDL::Lvalue;
30
31
32
33perl v5.8.8 2004-09-07 Lite(3)